docs: Fix typo in example code

This commit is contained in:
Lucas Hoffmann
2020-11-03 10:05:26 +01:00
committed by GitHub
parent a061d53e18
commit 432f3240f1

View File

@@ -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'}
<