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 18e56c6a90
commit bebaeaab76

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