We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46fa9e7 commit 0342038Copy full SHA for 0342038
src/overview.md
@@ -44,7 +44,7 @@ we'll talk about that later.
44
- The parser [translates the token stream from the lexer into an Abstract Syntax
45
Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
46
analysis. The crate entry points for the parser are the `Parser::parse_crate_mod()` and
47
- `Parser::parse_mod()` methods found in `rustc_parse::parser::item`. The external
+ `Parser::parse_mod()` methods found in `rustc_parse::parser::Parser`. The external
48
module parsing entry point is `rustc_expand::module::parse_external_mod`. And
49
the macro parser entry point is [`Parser::parse_nonterminal()`][parse_nonterminal].
50
- Parsing is performed with a set of `Parser` utility methods including `fn bump`,
0 commit comments