We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fa6d9e + 78168dc commit 13d2a2cCopy full SHA for 13d2a2c
src/primitives/literals.md
@@ -4,7 +4,7 @@ Integers `1`, floats `1.2`, characters `'a'`, strings `"abc"`, booleans `true`
4
and the unit type `()` can be expressed using literals.
5
6
Integers can, alternatively, be expressed using hexadecimal, octal or binary
7
-notation using either of these prefixes: `0x`, `0o` or `0b`.
+notation using these prefixes respectively: `0x`, `0o` or `0b`.
8
9
Underscores can be inserted in numeric literals to improve readability, e.g.
10
`1_000` is the same as `1000`, and `0.000_001` is the same as `0.000001`.
0 commit comments