diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/init.lua | 4 | ||||
-rw-r--r-- | core/keys.lua | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/core/init.lua b/core/init.lua index e9311985..2bfb0662 100644 --- a/core/init.lua +++ b/core/init.lua @@ -189,8 +189,8 @@ function spawn_proc:wait() end -- Ensure any read operations read all stdout available. The stdout callback -- function passed to `spawn()` will not be called until the stdout buffer is -- clear. --- @param arg Optional argument similar to those in Lua's `io.read()`, but "*n" --- is not supported. The default value is "*l", which reads a line. +-- @param arg Optional argument similar to those in Lua's `io.read()`, but "n" +-- is not supported. The default value is "l", which reads a line. -- @return string of bytes read function spawn_proc:read(arg) end diff --git a/core/keys.lua b/core/keys.lua index e55f71d0..e1d2b70f 100644 --- a/core/keys.lua +++ b/core/keys.lua @@ -152,7 +152,6 @@ local keychain = {} --- -- The current chain of key sequences. (Read-only.) --- Use the '#' operator (instead of `ipairs()`) for iteration. -- @class table -- @name keychain M.keychain = setmetatable({}, { |