Skip to content

Commit

Permalink
div.jl - divrem - unneeded "the" removed (JuliaLang#34848)
Browse files Browse the repository at this point in the history
  • Loading branch information
cormullion committed Feb 23, 2020
1 parent 3fdfb67 commit 5286b40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/div.jl
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ cld(a, b) = div(a, b, RoundUp)
divrem(x, y, r::RoundingMode=RoundToZero)
The quotient and remainder from Euclidean division.
Equivalent to `(div(x,y,r), rem(x,y,r))`. Equivalently, with the the default
Equivalent to `(div(x,y,r), rem(x,y,r))`. Equivalently, with the default
value of `r`, this call is equivalent to `(x÷y, x%y)`.
# Examples
Expand Down

0 comments on commit 5286b40

Please sign in to comment.