From f4e4799f2707a41a882fa85c2f1a276d69f08d56 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 12 Oct 2025 12:16:14 +0800 Subject: docs: small fixes (#36146) Close #35989 Close #36031 Close #36107 Co-authored-by: Kieran Moy Co-authored-by: William Sprent Co-authored-by: David Briscoe <43559+idbrii@users.noreply.github.com> --- runtime/lua/vim/_system.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/lua/vim/_system.lua') diff --git a/runtime/lua/vim/_system.lua b/runtime/lua/vim/_system.lua index 7ff61a1c68..00c362696f 100644 --- a/runtime/lua/vim/_system.lua +++ b/runtime/lua/vim/_system.lua @@ -98,10 +98,10 @@ end --- Example: --- ```lua --- local obj = vim.system({'sleep', '10'}) ---- obj:kill('TERM') -- sends SIGTERM to the process +--- obj:kill('sigterm') -- sends SIGTERM to the process --- ``` --- ---- @param signal integer|string Signal to send to the process. +--- @param signal integer|string Signal to send to the process. See |luv-constants|. function SystemObj:kill(signal) self._state.handle:kill(signal) end -- cgit v1.3-3-g829e