Skip to content

Commit 0342038

Browse files
authored
Fix a typo (rust-lang#1200)
1 parent 46fa9e7 commit 0342038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ we'll talk about that later.
4444
- The parser [translates the token stream from the lexer into an Abstract Syntax
4545
Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
4646
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
47+
`Parser::parse_mod()` methods found in `rustc_parse::parser::Parser`. The external
4848
module parsing entry point is `rustc_expand::module::parse_external_mod`. And
4949
the macro parser entry point is [`Parser::parse_nonterminal()`][parse_nonterminal].
5050
- Parsing is performed with a set of `Parser` utility methods including `fn bump`,

0 commit comments

Comments
 (0)