Skip to content

Commit 261ffbc

Browse files
Merge branch 'math-migration' of https://github.com/JamieBallingall/purescript-numbers into math-migration
2 parents 91c9a2e + 07714bf commit 261ffbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Data/Number.purs

Lines changed: 2 additions & 2 deletions
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 %
@@ -180,7 +180,7 @@ log2e = 1.4426950408889634
180180
pi :: Number
181181
pi = 3.141592653589793
182182

183-
-- | The Square root of one half, around 0.707107.
183+
-- | The square root of one half, around 0.707107.
184184
sqrt1_2 :: Number
185185
sqrt1_2 = 0.7071067811865476
186186

0 commit comments

Comments
 (0)