Merge pull request #1570 from evgenykuzyakov/master

Fix raw identifier in ch03-00
This commit is contained in:
Carol (Nichols || Goulding) 2018-11-01 21:32:16 -04:00 committed by GitHub
commit c3465433d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ or:
Sometimes, you may need to use a name that's a keyword for another purpose.
Maybe you need to call a function named *match* that is coming from a C
library, where 'match' is not a keyword. To do this, you can use a "raw identifier."
Raw identifiers start with `#r`:
Raw identifiers start with `r#`:
```rust,ignore
let r#fn = "this variable is named 'fn' even though that's a keyword";