Merge pull request #13212 from lucc/patch-2

[RDY] docs: Fix typo
This commit is contained in:
Thomas Vigouroux
2020-11-03 15:22:41 +01:00
committed by GitHub

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