Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
ouput -> output
  • Loading branch information
b1rger authored Aug 31, 2019
1 parent 19d7bd4 commit 66f2cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/sway/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void Window::onCmd(const struct Ipc::ipc_response& res) {
try {
std::lock_guard<std::mutex> lock(mutex_);
auto payload = parser_.parse(res.payload);
auto output = payload["ouput"].isString() ? payload["output"].asString() : "";
auto output = payload["output"].isString() ? payload["output"].asString() : "";
std::tie(app_nb_, windowId_, window_, app_id_) = getFocusedNode(payload["nodes"], output);
dp.emit();
} catch (const std::exception& e) {
Expand Down

0 comments on commit 66f2cbe

Please sign in to comment.