it is rustc_parse, not rustc_parser

This commit is contained in:
Tshepang Lekhonkhobe 2020-03-30 15:42:09 +02:00 committed by Who? Me?!
parent d3f1ef2a87
commit e2c733c481
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ macro-expansion).
The parser is defined in [`librustc_parse`][librustc_parse], along with a
high-level interface to the lexer and some validation routines that run after
macro expansion. In particular, the [`rustc_parser::parser`][parser] contains
macro expansion. In particular, the [`rustc_parse::parser`][parser] contains
the parser implementation.
The main entrypoint to the parser is via the various `parse_*` functions in the