diff options
author | Stephan Seitz <stephan.seitz@fau.de> | 2020-09-11 15:40:34 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-09-13 07:46:39 +0200 |
commit | 05c68922d35af8db38df594a46c87270b5cac0c8 (patch) | |
tree | 3e2e13a7013b8b9e7fe3b4e35206bf233c941dd0 | |
parent | e4b5efa51e5320f4b0bc2c74409391e76b30336f (diff) | |
download | rneovim-05c68922d35af8db38df594a46c87270b5cac0c8.tar.gz rneovim-05c68922d35af8db38df594a46c87270b5cac0c8.tar.bz2 rneovim-05c68922d35af8db38df594a46c87270b5cac0c8.zip |
Fix typo in treesitter docs: parser directory is `parser` not `parsers`
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 509ed7bf2c..a60153d65f 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -577,7 +577,7 @@ updates. Parser files *treesitter-parsers* Parsers are the heart of tree-sitter. They are libraries that tree-sitter will -search for in the `parsers` runtime directory. +search for in the `parser` runtime directory. For a parser to be available for a given language, there must be a file named `{lang}.so` within the parser directory. |