diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 00:04:08 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 09:27:33 -0800 |
| commit | 4ae3107e72b3ae06f2c1f987d6ccc6087c7097ce (patch) | |
| tree | eb86f1ba2f2f4174af0f4a70b76725b3c0eaa63d | |
| parent | 7e2ed4adc16d0671b70cceea037440eb14a5bbea (diff) | |
| parent | edb39b8b336278ca8b437c974d2da25d68e9e549 (diff) | |
| download | rust-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.md | 2 |
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`. |
