Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kit494way committed Dec 19, 2023
1 parent 04fa206 commit ed94b41
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ other things, help with syntax highlighting. to learn how to write queries,
consider [the official docs][005]

- [corpus/][103] -> this directory contains tests for the parser. the tests
roughly organized in directories with their nodes. add a file with a descriprive
roughly organized in directories with their nodes. add a file with a descriptive
name that should generally cover a node to the right folder and write the
tests using the [special test syntax][006]

Expand Down Expand Up @@ -75,7 +75,7 @@ a [`sample config file`][105] is provided to get you started.
```

## using the parser from rust
1. the code is located at [`exanples/main.rs`][106]
1. the code is located at [`examples/main.rs`][106]
2. run it with `cargo run --example main`

## tips
Expand Down
6 changes: 3 additions & 3 deletions installation/helix.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ most sources have grammars for common languages (including nu!) built in.

### Using built-in helix grammars
Version from master branch of helix or any release after (not including) 23.05
will have this grammar and queries preinstalled. Hovewer due to rapid
development pace of nushell they might be severly out of date.
will have this grammar and queries preinstalled. However due to rapid
development pace of nushell they might be severely out of date.

### Installing up to date grammar from this repo
Following [official guide](https://docs.helix-editor.com/languages.html#tree-sitter-grammar-configuration)
Expand All @@ -16,7 +16,7 @@ name = "nu"
source = { git = "https://github.com/nushell/tree-sitter-nu", rev = "<revision hash or main>" }
```

Then downaload and install up-to-date grammar:
Then download and install up-to-date grammar:
```nu
hx -g fetch
hx -g build
Expand Down
2 changes: 1 addition & 1 deletion installation/neovim.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ highlight groups with tree-sitter nodes. Run `:highlight` in neovim for a list
of highlight groups.

If you are using the `lazy` package manager for *neovim*, you can run the
following snippet to install the hightlights file and enable the highlighting:
following snippet to install the highlights file and enable the highlighting:
```nushell
let remote = "https://raw.githubusercontent.com/nushell/tree-sitter-nu/main/queries/"
let local = (
Expand Down

0 comments on commit ed94b41

Please sign in to comment.