Skip to content

Commit ff855ba

Browse files
authored
Typo mistake in architecture.md
1 parent 90ef630 commit ff855ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ That being said, there are few ways to write a parser.
5656
A lot of parsers like [`@babel/parser` (parser behind Babel)](https://github.com/babel/babel/tree/master/packages/babel-parser), [`CSSTree`](https://github.com/csstree/csstree) were written in such way.
5757
The main reasons to separate tokenization from parsing steps are performance and abstracting complexity.
5858

59-
Let think about why the second way is better for our needs.
59+
Let's think about why the second way is better for our needs.
6060

6161
First of all, because string to tokens step takes more time than parsing step. We operate on large source string and process it char by char, this is why it is very inefficient operation in terms of performance and we should perform it only once.
6262

0 commit comments

Comments
 (0)