summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2024-06-19 19:59:23 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-19 20:00:00 +0200
commitc98bfb9f59b8045372e4c0e396d707f55d9d027a (patch)
treec7f42e2de445d8a148520bd9b74b852989876fb1 /runtime/doc
parent56f587b3f81f403bb0546c6892b3273b2a9e954f (diff)
runtime(doc): wrong return type for execute() function
The description clearly explains that this function returns a string. I think the 'Number' here is a copy/paste error. closes: #15045 Signed-off-by: Marius Gedminas <marius@gedmin.as> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/builtin.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 0061e9efc6..c1dd26020a 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1,4 +1,4 @@
-*builtin.txt* For Vim version 9.1. Last change: 2024 Jun 17
+*builtin.txt* For Vim version 9.1. Last change: 2024 Jun 19
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2580,7 +2580,7 @@ execute({command} [, {silent}]) *execute()*
Can also be used as a |method|: >
GetCommand()->execute()
<
- Return type: |Number|
+ Return type: |String|
exepath({expr}) *exepath()*