about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorth0114nd <th0114nd@gmail.com>2014-12-18 17:55:34 -0500
committerth0114nd <th0114nd@gmail.com>2014-12-18 17:55:34 -0500
commitedb39b8b336278ca8b437c974d2da25d68e9e549 (patch)
tree78746bd4fa16a8d7cdecd143f966bed8e5224eb8 /src/doc/reference.md
parentf9a48492a82f805aa40d8b6fea290badbab0d1b1 (diff)
downloadrust-edb39b8b336278ca8b437c974d2da25d68e9e549.tar.gz
rust-edb39b8b336278ca8b437c974d2da25d68e9e549.zip
Boolean literals are not Number literals
The current indentation level would indicate that Boolean literals are on the same level as Integer and Float literals under Number literals, unindenting moves it to the same scope as Character and string literals, Byte and byte string literals, and Number literals under Literals.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 3d4791e916e..9e4c01771d9 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -518,7 +518,7 @@ This last example is different because it is not possible to use the suffix
 syntax with a floating point literal ending in a period. `2.f64` would attempt
 to call a method named `f64` on `2`.
 
-##### Boolean literals
+#### Boolean literals
 
 The two values of the boolean type are written `true` and `false`.