From 66cfc05d76651f5e7ab961db57ecb8e1eff2795a Mon Sep 17 00:00:00 2001 From: Niklas Mohrin <47574893+niklasmohrin@users.noreply.github.com> Date: Sun, 25 Jul 2021 14:08:46 +0200 Subject: [PATCH] Fix highlighting typo on "creating parsers" site --- docs/section-3-creating-parsers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/section-3-creating-parsers.md b/docs/section-3-creating-parsers.md index 83e5a1c9..4433ea00 100644 --- a/docs/section-3-creating-parsers.md +++ b/docs/section-3-creating-parsers.md @@ -95,7 +95,7 @@ Let's go over all of the functionality of the `tree-sitter` command line tool. ### Command: `generate` -The most important command you'll use is `tree-sitter generate`. This command reads the `grammar.js` file in your current working directory and creates a file called `src/parser.c`, which implements the parser. After making changes to your grammar, just run `tree-sitter` generate again. +The most important command you'll use is `tree-sitter generate`. This command reads the `grammar.js` file in your current working directory and creates a file called `src/parser.c`, which implements the parser. After making changes to your grammar, just run `tree-sitter generate` again. The first time you run `tree-sitter generate`, it will also generate a few other files: