Skip to content

Commit

Permalink
docs: fix punctuation in step1_lexing.md (#1944)
Browse files Browse the repository at this point in the history
Someone must've hit `"` by accident, which is right next to `:` on the ANSI keyboard layout.
  • Loading branch information
srfsh committed Jun 20, 2023
1 parent adb11e5 commit f8ecee3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/website/docs/tutorial/step1_lexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const WhiteSpace = createToken({

## All Our Tokens

Lets examine all the needed Tokens definitions"
Lets examine all the needed Tokens definitions:

```javascript
const Identifier = createToken({ name: "Identifier", pattern: /[a-zA-Z]\w*/ })
Expand Down

0 comments on commit f8ecee3

Please sign in to comment.