Skip to content

Commit 4e41d06

Browse files
JohnTitormark-i-m
authored andcommitted
Prefer :: than .
1 parent e54d59c commit 4e41d06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ we'll talk about that later.
3838
data which are emitted in `librustc_parse::lexer::mod` as real diagnostics.
3939
- The lexer preserves full fidelity information for both IDEs and proc macros.
4040
- The parser [translates the token stream from the lexer into an Abstract Syntax
41-
Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
42-
analysis. The crate entry points for the parser are the `Parser.parse_crate_mod()` and
43-
`Parser.parse_mod()` methods found in `librustc_parse::parser::item`. The external
41+
Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
42+
analysis. The crate entry points for the parser are the `Parser::parse_crate_mod()` and
43+
`Parser::parse_mod()` methods found in `librustc_parse::parser::item`. The external
4444
module parsing entry point is `librustc_expand::module::parse_external_mod`. And
45-
the macro parser entry point is [`Parser.parse_nonterminal()`][parse_nonterminal].
45+
the macro parser entry point is [`Parser::parse_nonterminal()`][parse_nonterminal].
4646
- Parsing is performed with a set of `Parser` utility methods including `fn bump`,
4747
`fn check`, `fn eat`, `fn expect`, `fn look_ahead`.
4848
- Parsing is organized by the semantic construct that is being parsed. Separate

0 commit comments

Comments
 (0)