1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 14:54:16 +03:00

docs: fix parameters to call_after callback

This commit is contained in:
Wez Furlong 2022-07-18 12:35:36 -07:00
parent dd327617b1
commit d15fd7b4db

View File

@ -18,7 +18,7 @@ it to the range 0-255 and using that to assign a background color:
local wezterm = require 'wezterm'
-- Reload the configuration every minute
wezterm.time.call_after(60, function(window, pane)
wezterm.time.call_after(60, function()
wezterm.reload_configuration()
end)