sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 967b14c2279b6a09830912b09d54668119045967
parent a8d1b05bac4cee56731d7e4aaafdcd0acd6bb787
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat,  5 May 2018 15:00:40 -0400

Merge pull request #1924 from nbraud/spelling

swaymsg: Fix spelling in error message
Diffstat:
Mswaymsg/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swaymsg/main.c b/swaymsg/main.c @@ -32,7 +32,7 @@ static void pretty_print_cmd(json_object *r) { if (!success(r, true)) { json_object *error; if (!json_object_object_get_ex(r, "error", &error)) { - printf("An unknkown error occured"); + printf("An unknkown error occurred"); } else { printf("Error: %s\n", json_object_get_string(error)); }