changeset 35395:fbd4fa86b2c8

runtime(doc): correct return types for job_start() and job_status() Commit: https://github.com/vim/vim/commit/1a946044fe3993bc87c36960d38ad2934df9c649 Author: Christian Brabandt <cb@256bit.org> Date: Thu Jun 13 19:13:28 2024 +0200 runtime(doc): correct return types for job_start() and job_status() fixes: https://github.com/vim/vim/issues/14982 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 13 Jun 2024 19:30:09 +0200
parents 201bc52b2509
children 95149ba69620
files runtime/doc/channel.txt
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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}])			*jo
 		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()* *E9
 		Can also be used as a |method|: >
 			GetJob()->job_status()
 <
-		Return type: |job|
+		Return type: |String|
 
 
 job_stop({job} [, {how}])					*job_stop()*