aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/lua.txt
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2023-04-29 20:33:27 -0600
committerGitHub <noreply@github.com>2023-04-29 20:33:27 -0600
commit2d54f5e903261f50995063e7de4a222f2a2f655c (patch)
treed19ef5970f840a6636ce1f12f03053a88c38988b /runtime/doc/lua.txt
parentab7dcefbebf5a483845e1fe1c82cb32e1c6418d4 (diff)
parentef1801cc7c3d8fe9fd8524a3b677095d4437fc66 (diff)
downloadrneovim-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.txt2
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