File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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.
130130foreign 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.
133133foreign import remainder :: Number -> Number -> Number
134134
135135infixl 7 remainder as %
@@ -180,7 +180,7 @@ log2e = 1.4426950408889634
180180pi :: Number
181181pi = 3.141592653589793
182182
183- -- | The Square root of one half, around 0.707107.
183+ -- | The square root of one half, around 0.707107.
184184sqrt1_2 :: Number
185185sqrt1_2 = 0.7071067811865476
186186
You can’t perform that action at this time.
0 commit comments