Skip to content

Commit 49fb792

Browse files
NHDalyKeno
authored andcommitted
Fix div docstring to describe division, after #33040 (#33703)
It looks like in #33040 the `div` docstring was accidentally incorrectly copied from the `rem` docstring, so it currently describes the `rem` operation, not `div`. This commit changes that docstring to correctly describe integer division with custom rounding.
1 parent 1b6101a commit 49fb792

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

base/div.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"""
44
div(x, y, r::RoundingMode=RoundToZero)
55
6-
Compute the remainder of `x` after integer division by `y`, with the quotient rounded
7-
according to the rounding mode `r`. In other words, the quantity
6+
The quotient from Euclidean division. Computes x/y, rounded to an integer according
7+
to the rounding mode `r`. In other words, the quantity
88
9-
y*round(x/y,r)
9+
round(x/y,r)
1010
1111
without any intermediate rounding.
1212

0 commit comments

Comments
 (0)