We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4875b60 commit ea1767dCopy full SHA for ea1767d
src/the-parser.md
@@ -5,8 +5,8 @@ characters) and turn it into something the compiler can work with more
5
conveniently than strings. This happens in two stages: Lexing and Parsing.
6
7
Lexing takes strings and turns them into streams of [tokens]. For example,
8
-`a.b + c` would be turned into the tokens `a`, `.`, `b`, `+`, and `c`.
9
-The lexer lives in [`rustc_lexer`][lexer].
+`foo.bar + buz` would be turned into the tokens `foo`, `.`,
+`bar`, `+`, and `buz`. The lexer lives in [`rustc_lexer`][lexer].
10
11
[tokens]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/token/index.html
12
[lexer]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/index.html
0 commit comments