summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-06-13 19:13:28 +0200
committerChristian Brabandt <cb@256bit.org>2024-06-13 19:13:28 +0200
commit1a946044fe3993bc87c36960d38ad2934df9c649 (patch)
tree8f7940d1415e7ba8976529785e280e8f84b38a66 /runtime/doc
parenta3bddb759e77c52431a93a68674790dd02647cd1 (diff)
runtime(doc): correct return types for job_start() and job_status()
fixes: #14982 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/channel.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/channel.txt b/runtime/doc/channel.txt
index 1d9dd5bd80..ece06af5ba 100644
--- a/runtime/doc/channel.txt
+++ b/runtime/doc/channel.txt
@@ -1,4 +1,4 @@
-*channel.txt* For Vim version 9.1. Last change: 2024 Jun 06
+*channel.txt* For Vim version 9.1. Last change: 2024 Jun 13
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1031,7 +1031,7 @@ job_start({command} [, {options}]) *job_start()*
Can also be used as a |method|: >
BuildCommand()->job_start()
<
- Return type: |Number|
+ Return type: |job|
job_status({job}) *job_status()* *E916*
@@ -1056,7 +1056,7 @@ job_status({job}) *job_status()* *E916*
Can also be used as a |method|: >
GetJob()->job_status()
<
- Return type: |job|
+ Return type: |String|
job_stop({job} [, {how}]) *job_stop()*