about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkryptan <kryptan@users.noreply.github.com>2018-10-20 15:24:38 +0300
committerGitHub <noreply@github.com>2018-10-20 15:24:38 +0300
commite10f0cd07db1be8579cd6fd4f3da7cd94502a18c (patch)
treedf91bdd3fb8b27a66449ca8526e2eec4a3f8eeaf
parent94273f4d8e463cac45486328294bb1c2bbc10170 (diff)
downloadrust-e10f0cd07db1be8579cd6fd4f3da7cd94502a18c.tar.gz
rust-e10f0cd07db1be8579cd6fd4f3da7cd94502a18c.zip
Use a keyword in raw identifier example
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index b40897a7509..7ae7dc9935b 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -7,7 +7,7 @@ Language
   more powerful code generation, there is a [new chapter available][proc-macros]
   in Rust Programming Language book that goes further in depth.
 - [You can now use keywords as identifiers using the raw identifiers
-  syntax (`r#`).][53236] e.g. `let r#bool = true;`
+  syntax (`r#`).][53236] e.g. `let r#for = true;`
 - [Using anonymous parameters in traits is now deprecated with a warning and
   will be a hard error in the 2018 edition.][53272]
 - [You can now use `crate` in paths.][54404] This allows you to refer to the