Skip to content

Commit 4c1964c

Browse files
authored
Merge pull request #1776 from ibr4qr/patch-1
Typo mistake in architecture.md
2 parents 90ef630 + ff855ba commit 4c1964c

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)