diff options
author | Jack Rowlingson <jrowlingson@esri.com> | 2022-12-06 11:44:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 16:44:43 +0000 |
commit | a069e88b4ea593419181271bfb41154e45b81090 (patch) | |
tree | 94ffcf70bdee5c256445136df24008eab285f201 | |
parent | 73ddb6daf98d7adee2dd0dc033723383e38b0ebe (diff) | |
download | rneovim-a069e88b4ea593419181271bfb41154e45b81090.tar.gz rneovim-a069e88b4ea593419181271bfb41154e45b81090.tar.bz2 rneovim-a069e88b4ea593419181271bfb41154e45b81090.zip |
docs(lua): correct vim.spell.check example (#21311)
-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 a5e99ae162..27b5a39459 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -733,7 +733,7 @@ vim.spell.check({str}) *vim.spell.check()* vim.spell.check("the quik brown fox") -- => -- { - -- {'quik', 'bad', 4} + -- {'quik', 'bad', 5} -- } < Parameters: ~ |