diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-17 08:35:45 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-17 11:50:30 -0800 |
| commit | 42dbee098ba766787206e5b4a61e080c90be88fa (patch) | |
| tree | 1fcc3e7156aace410ff0e3bdb984f43daa08e39e /src/doc/guide.md | |
| parent | b56d4bf9162a299f2e4bc5bc8d424a32165917df (diff) | |
| parent | 73d395e6dbde3e720544a660c95f407378b5be70 (diff) | |
| download | rust-42dbee098ba766787206e5b4a61e080c90be88fa.tar.gz rust-42dbee098ba766787206e5b4a61e080c90be88fa.zip | |
rollup merge of #19930: cllns/lowercase-if
On the [guide site](http://doc.rust-lang.org/guide.html#if) I was confused when I got to "5 If". It looked like "5 LF" in lowercase. Changing the if to lowercase solves this problem. I know titles are all capitalized, but I think it makes sense in this case to keep it lowercase, since `if` is a reserved word. I'd also be open to making it ``` `if` ``` but I'm not sure how that would look on the site. Before:  After: 
Diffstat (limited to 'src/doc/guide.md')
| -rw-r--r-- | src/doc/guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md index 2f62c745b90..08d2c5bf978 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -551,7 +551,7 @@ format in a more detailed manner, there are a [wide number of options available](std/fmt/index.html). For now, we'll just stick to the default: integers aren't very complicated to print. -# If +# `if` Rust's take on `if` is not particularly complex, but it's much more like the `if` you'll find in a dynamically typed language than in a more traditional |
