Skip to content

Commit

Permalink
Merge pull request rust-lang#1570 from evgenykuzyakov/master
Browse files Browse the repository at this point in the history
Fix raw identifier in ch03-00
  • Loading branch information
carols10cents authored Nov 2, 2018
2 parents 2920a7f + 044dd7e commit c346543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2018-edition/src/ch03-00-common-programming-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit c346543

Please sign in to comment.