diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-01 13:15:27 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-05-01 13:19:34 +0200 |
commit | eb7ea6e12253d6fb9296113b01f5d257341a7a18 (patch) | |
tree | e67f4e2954320a3bb50fe21a2c695430a90aae79 /runtime/doc/eval.txt | |
parent | 44ea50cee45d7c1fc464b77f45ef480916dba19a (diff) | |
download | rneovim-eb7ea6e12253d6fb9296113b01f5d257341a7a18.tar.gz rneovim-eb7ea6e12253d6fb9296113b01f5d257341a7a18.tar.bz2 rneovim-eb7ea6e12253d6fb9296113b01f5d257341a7a18.zip |
vim-patch:369b6f57c426
Update runtime files.
https://github.com/vim/vim/commit/369b6f57c426b4bf39b4a0cac8d21ed1b5f7de4d
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 931e1821cd..7573165c60 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -7061,7 +7061,7 @@ strcharpart({src}, {start}[, {len}]) *strcharpart()* Like |strpart()| but using character index and length instead of byte index and length. When a character index is used where a character does not - exist it is assumed to be one byte. For example: > + exist it is assumed to be one character. For example: > strcharpart('abc', -1, 2) < results in 'a'. |