about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-21 00:04:08 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-21 09:27:33 -0800
commit4ae3107e72b3ae06f2c1f987d6ccc6087c7097ce (patch)
treeeb86f1ba2f2f4174af0f4a70b76725b3c0eaa63d
parent7e2ed4adc16d0671b70cceea037440eb14a5bbea (diff)
parentedb39b8b336278ca8b437c974d2da25d68e9e549 (diff)
downloadrust-4ae3107e72b3ae06f2c1f987d6ccc6087c7097ce.tar.gz
rust-4ae3107e72b3ae06f2c1f987d6ccc6087c7097ce.zip
rollup merge of #19996: th0114nd/boolean-inden
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.
-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 88330536d45..722230d3755 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`.