From 22fc5f480d5ec3caf1e6e7cd4192c946d488ff2a Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Thu, 17 Sep 2015 22:52:39 +0200 Subject: [PATCH] reference: mark that up to make it more clear it is a keyword --- src/doc/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 717c99901d1bc..6035f936c6ca3 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;