about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2023-03-03 23:43:24 +0900
committerTshepang Mbambo <tshepang@gmail.com>2023-03-03 17:41:21 +0200
commitb51072bba891a30455bfccef65e4ed76f80ff60e (patch)
treed277ec211792653febec8015296a38f7540984bf /src/doc/rustc-dev-guide
parent9a058edb057114789cd024fa2bb72ae7c4786eea (diff)
downloadrust-b51072bba891a30455bfccef65e4ed76f80ff60e.tar.gz
rust-b51072bba891a30455bfccef65e4ed76f80ff60e.zip
Remove mention to lexer/parser refactoring
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/the-parser.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/the-parser.md b/src/doc/rustc-dev-guide/src/the-parser.md
index 0d37704e84b..f0436350aa0 100644
--- a/src/doc/rustc-dev-guide/src/the-parser.md
+++ b/src/doc/rustc-dev-guide/src/the-parser.md
@@ -1,8 +1,5 @@
 # Lexing and Parsing
 
-As of <!-- date-check --> January 2021, the lexer and parser are undergoing
-refactoring to allow extracting them into libraries.
-
 The very first thing the compiler does is take the program (in Unicode
 characters) and turn it into something the compiler can work with more
 conveniently than strings. This happens in two stages: Lexing and Parsing.