Skip to content

Commit 6544eeb

Browse files
Fix comment to remainder
Co-authored-by: Harry Garrood <[email protected]>
1 parent 119cf59 commit 6544eeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Number.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ foreign import min :: Number -> Number -> Number
129129
-- | Return the first argument exponentiated to the power of the second argument.
130130
foreign import pow :: Number -> Number -> Number
131131

132-
-- | Computes the remainder after division, wrapping Javascript's `%` operator.
132+
-- | Computes the remainder after division. This is the same as JavaScript's `%` operator.
133133
foreign import remainder :: Number -> Number -> Number
134134

135135
infixl 7 remainder as %

0 commit comments

Comments
 (0)