Skip to content

Commit f08eb5d

Browse files
committed
remove incorrect info
Closes rust-lang#1433
1 parent d3daa1f commit f08eb5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/the-parser.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ Code for lexical analysis is split between two crates:
5252
constituting tokens. Although it is popular to implement lexers as generated
5353
finite state machines, the lexer in `rustc_lexer` is hand-written.
5454

55-
- [`StringReader`] from [`rustc_ast`][rustc_ast] integrates `rustc_lexer` with `rustc`
56-
specific data structures. Specifically, it adds `Span` information to tokens
57-
returned by `rustc_lexer` and interns identifiers.
55+
- [`StringReader`] integrates `rustc_lexer` with data structures specific to `rustc`.
56+
Specifically,
57+
it adds `Span` information to tokens returned by `rustc_lexer` and interns identifiers.
5858

5959
[rustc_ast]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/index.html
6060
[rustc_errors]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_errors/index.html

0 commit comments

Comments
 (0)