diff options
author | Lucas Hoffmann <lucc@users.noreply.github.com> | 2020-11-03 10:05:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 10:05:26 +0100 |
commit | 432f3240f171e857beb3d1a554cbd8a649bb38ae (patch) | |
tree | f6961a5590941517dd3e7055fea2cab3211219d2 | |
parent | a061d53e18168130aad537a9e8012390834ff8c2 (diff) | |
download | rneovim-432f3240f171e857beb3d1a554cbd8a649bb38ae.tar.gz rneovim-432f3240f171e857beb3d1a554cbd8a649bb38ae.tar.bz2 rneovim-432f3240f171e857beb3d1a554cbd8a649bb38ae.zip |
docs: Fix typo in example code
-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 334bb33c1e..9f537caee8 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1068,7 +1068,7 @@ split({s}, {sep}, {plain}) *vim.split()* Splits a string at each instance of a separator. Examples: > - split(":aa::b:", ":") --> {'','aa','','bb',''} + split(":aa::b:", ":") --> {'','aa','','b',''} split("axaby", "ab?") --> {'','x','y'} split(x*yz*o, "*", true) --> {'x','yz','o'} < |