about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-17 22:52:39 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-09-17 22:52:39 +0200
commit22fc5f480d5ec3caf1e6e7cd4192c946d488ff2a (patch)
treeee601dd1785023cd14a91a62cc424f3054ce9976 /src/doc/reference.md
parentd2e13e822a73e0ea46ae9e21afdd3155fc997f6d (diff)
downloadrust-22fc5f480d5ec3caf1e6e7cd4192c946d488ff2a.tar.gz
rust-22fc5f480d5ec3caf1e6e7cd4192c946d488ff2a.zip
reference: mark that up to make it more clear it is a keyword
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 717c99901d1..6035f936c6c 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3087,7 +3087,7 @@ loops](#infinite-loops), [break expressions](#break-expressions), and
 A `for` expression is a syntactic construct for looping over elements provided
 by an implementation of `std::iter::IntoIterator`.
 
-An example of a for loop over the contents of an array:
+An example of a `for` loop over the contents of an array:
 
 ```
 # type Foo = i32;