Skip to content

Commit ed1e1f2

Browse files
Alexander Regueiromark-i-m
Alexander Regueiro
authored andcommitted
changed hyphens to en-dashes
1 parent 606fe05 commit ed1e1f2

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
@@ -9,8 +9,8 @@ The bulk of the parser lives in the [libsyntax] crate.
99

1010
Like most parsers, the parsing process is composed of two main steps,
1111

12-
- lexical analysis - turn a stream of characters into a stream of token trees
13-
- parsing - turn the token trees into an AST
12+
- lexical analysis turn a stream of characters into a stream of token trees
13+
- parsing turn the token trees into an AST
1414

1515
The `syntax` crate contains several main players,
1616

@@ -39,4 +39,4 @@ all the information needed while parsing, as well as the `CodeMap` itself.
3939
[parser module]: https://github.com/rust-lang/rust/tree/master/src/libsyntax/parse
4040
[`Parser`]: https://github.com/rust-lang/rust/blob/master/src/libsyntax/parse/parser.rs
4141
[`StringReader`]: https://github.com/rust-lang/rust/blob/master/src/libsyntax/parse/lexer/mod.rs
42-
[visit module]: https://github.com/rust-lang/rust/blob/master/src/libsyntax/visit.rs
42+
[visit module]: https://github.com/rust-lang/rust/blob/master/src/libsyntax/visit.rs

0 commit comments

Comments
 (0)