From bd2f97a5e4b82a1820245e7bbee0db8b19feb425 Mon Sep 17 00:00:00 2001 From: Dezhi Wu Date: Sun, 5 Sep 2021 11:00:10 +0800 Subject: [PATCH] Fix a typo --- src/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overview.md b/src/overview.md index 6c756e18f..cabd4fc7d 100644 --- a/src/overview.md +++ b/src/overview.md @@ -44,7 +44,7 @@ we'll talk about that later. - The parser [translates the token stream from the lexer into an Abstract Syntax Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax analysis. The crate entry points for the parser are the `Parser::parse_crate_mod()` and - `Parser::parse_mod()` methods found in `rustc_parse::parser::item`. The external + `Parser::parse_mod()` methods found in `rustc_parse::parser::Parser`. The external module parsing entry point is `rustc_expand::module::parse_external_mod`. And the macro parser entry point is [`Parser::parse_nonterminal()`][parse_nonterminal]. - Parsing is performed with a set of `Parser` utility methods including `fn bump`,