summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2020-03-30 15:42:09 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-03-31 22:17:35 -0500
commitbebaeaab763a56c17d7f9dfe9b3d5977c03938de (patch)
tree3c4985b54ac7e1d3355f34e4242ebfe5d4e9630c /src/doc/rustc-dev-guide
parent18e56c6a904cfe8b64b57c4c664d1e9d367114e4 (diff)
downloadrust-bebaeaab763a56c17d7f9dfe9b3d5977c03938de.tar.gz
rust-bebaeaab763a56c17d7f9dfe9b3d5977c03938de.zip
it is rustc_parse, not rustc_parser
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/the-parser.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/the-parser.md b/src/doc/rustc-dev-guide/src/the-parser.md
index 8b8ef77cd76..c84ac4ea2e1 100644
--- a/src/doc/rustc-dev-guide/src/the-parser.md
+++ b/src/doc/rustc-dev-guide/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