From e2c733c48137dae3b2cd5f917e82f93458e87d36 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Mon, 30 Mar 2020 15:42:09 +0200 Subject: [PATCH] it is rustc_parse, not rustc_parser --- src/the-parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/the-parser.md b/src/the-parser.md index 8b8ef77c..c84ac4ea 100644 --- a/src/the-parser.md +++ b/src/the-parser.md @@ -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