diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-04-29 20:33:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 20:33:27 -0600 |
commit | 2d54f5e903261f50995063e7de4a222f2a2f655c (patch) | |
tree | d19ef5970f840a6636ce1f12f03053a88c38988b /runtime/doc/lua.txt | |
parent | ab7dcefbebf5a483845e1fe1c82cb32e1c6418d4 (diff) | |
parent | ef1801cc7c3d8fe9fd8524a3b677095d4437fc66 (diff) | |
download | rneovim-2d54f5e903261f50995063e7de4a222f2a2f655c.tar.gz rneovim-2d54f5e903261f50995063e7de4a222f2a2f655c.tar.bz2 rneovim-2d54f5e903261f50995063e7de4a222f2a2f655c.zip |
Merge pull request #23382 from gpanders/iter-benchmark
Add vim.iter benchmark to benchmark test suite
Diffstat (limited to 'runtime/doc/lua.txt')
-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 465c83e6ab..820bd0eb35 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -3080,7 +3080,7 @@ Iter:map({self}, {f}) *Iter:map()* • {f} function(...):any Mapping function. Takes all values returned from the previous stage in the pipeline as arguments and returns one or more new values, which are used in the next pipeline - stage. Nil return values returned are filtered from the output. + stage. Nil return values are filtered from the output. Return: ~ Iter |