File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ local F = require "plenary.functional"
13
13
--- @field detached ? boolean Spawn the child in a detached state making it a process group leader
14
14
--- @field skip_validation ? boolean Skip validating the arguments
15
15
--- @field enable_handlers ? boolean If set to false , disables all callbacks associated with output (default : true )
16
- --- @field enabled_recording ? boolean
16
+ --- @field enable_recording ? boolean
17
17
--- @field on_start ? fun ()
18
18
--- @field on_stdout ? fun ( error : string , data : string , self ?: Job )
19
19
--- @field on_stderr ? fun ( error : string , data : string , self ?: Job )
@@ -457,12 +457,12 @@ function Job:sync(timeout, wait_interval)
457
457
end
458
458
459
459
function Job :result ()
460
- assert (self .enable_recording , " 'enabled_recording ' is not enabled for this job." )
460
+ assert (self .enable_recording , " 'enable_recording ' is not enabled for this job." )
461
461
return self ._stdout_results
462
462
end
463
463
464
464
function Job :stderr_result ()
465
- assert (self .enable_recording , " 'enabled_recording ' is not enabled for this job." )
465
+ assert (self .enable_recording , " 'enable_recording ' is not enabled for this job." )
466
466
return self ._stderr_results
467
467
end
468
468
You can’t perform that action at this time.
0 commit comments