We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e6ee2 commit 8e99db3Copy full SHA for 8e99db3
src/Basics.elm
@@ -103,7 +103,7 @@ infix right 9 (>>) = composeR
103
104
**Note:** `Int` math is well-defined in the range `-2^31` to `2^31 - 1`. Outside
105
of that range, the behavior is determined by the compilation target. When
106
-generating JavaScript, the safe range expands to `-2^53` to `2^53 - 1` for some
+generating JavaScript, the safe range expands to `-(2^53 - 1)` to `2^53 - 1` for some
107
operations, but if we generate WebAssembly some day, we would do the traditional
108
[integer overflow][io]. This quirk is necessary to get good performance on
109
quirky compilation targets.
0 commit comments