Skip to content

Commit

Permalink
Fixes a typo in the word response
Browse files Browse the repository at this point in the history
  • Loading branch information
xomachine committed Jun 19, 2023
1 parent c035a50 commit 8a6e51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/subprocess.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ vis.events.subscribe(vis.events.QUIT, function ()
if failed then hardfail() end
end)

vis.events.subscribe(vis.events.PROCESS_RESPONCE, function (name, d, e)
vis.events.subscribe(vis.events.PROCESS_RESPONSE, function (name, d, e)
if expected_events[name] and #(expected_events[name]) > 0 then
local current_event = table.remove(expected_events[name], 1)
if d ~= current_event.expected or e ~= current_event.etype then
Expand Down

0 comments on commit 8a6e51b

Please sign in to comment.