Skip to content

Commit 37d9df8

Browse files
authored
Merge pull request #2707 from reddevilmidzy/fix
Fix function formatting in src/overview.md
2 parents 1127d2a + 9caa0e9 commit 37d9df8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ preserves full fidelity information for both IDEs and procedural macros
5050
The *parser* [translates the token stream from the `lexer` into an Abstract Syntax
5151
Tree (AST)][parser]. It uses a recursive descent (top-down) approach to syntax
5252
analysis. The crate entry points for the `parser` are the
53-
[`Parser::parse_crate_mod()`][parse_crate_mod] and [`Parser::parse_mod()`][parse_mod]
53+
[`Parser::parse_crate_mod`][parse_crate_mod] and [`Parser::parse_mod`][parse_mod]
5454
methods found in [`rustc_parse::parser::Parser`]. The external module parsing
5555
entry point is [`rustc_expand::module::parse_external_mod`][parse_external_mod].
56-
And the macro-`parser` entry point is [`Parser::parse_nonterminal()`][parse_nonterminal].
56+
And the macro-`parser` entry point is [`Parser::parse_nonterminal`][parse_nonterminal].
5757

5858
Parsing is performed with a set of [`parser`] utility methods including [`bump`],
5959
[`check`], [`eat`], [`expect`], [`look_ahead`].

0 commit comments

Comments
 (0)