runtime(doc): update :call with a range and remove space
Commit:
https://github.com/vim/vim/commit/6b9cf3139a666c97772bb895886ecf04b264dcc1
Author: Christian Brabandt <
c...@256bit.org>
Date: Sun Aug 10 14:52:03 2025 +0200
runtime(doc): update :call with a range and remove space
Commit fc3c204bbe48d34bded70d2b1 introduced a spurious space with the
:call command
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/runtime/doc/usr_41.txt b/runtime/doc/usr_41.txt
index 5543c0399..094fe78e1 100644
--- a/runtime/doc/usr_41.txt
+++ b/runtime/doc/usr_41.txt
@@ -1587,7 +1587,7 @@ once for every line in the range, with the cursor in that line. Example: >
If you call this function with: >
- :10,15 call Number()
+ :10,15call Number()
The function will be called six times, starting on line 10 and ending on line
15.