diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-01 14:21:00 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-01 14:52:21 +0100 |
| commit | 05380d700b80501397a1889cb919dc761a1fa419 (patch) | |
| tree | f898d65e4f32db45963eb17e1ece403a96179561 /lua | |
| parent | Fix bugs in TSRange (diff) | |
| download | nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar.gz nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar.bz2 nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar.lz nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar.xz nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.tar.zst nvim-treesitter-05380d700b80501397a1889cb919dc761a1fa419.zip | |
Fix typo in locals.lua: vaild -> valid
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/locals.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/locals.lua b/lua/nvim-treesitter/locals.lua index 0e9211d33..6f167d36b 100644 --- a/lua/nvim-treesitter/locals.lua +++ b/lua/nvim-treesitter/locals.lua @@ -29,7 +29,7 @@ end -- @param node_text: the node text to use -- @returns a string id function M.get_definition_id(scope, node_text) - -- Add a vaild starting character in case node text doesn't start with a valid one. + -- Add a valid starting character in case node text doesn't start with a valid one. return table.concat({ "k", node_text or "", scope:range() }, "_") end |
