diff options
author | Eric Engestrom <[email protected]> | 2016-04-02 16:00:05 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2016-04-02 16:00:05 +0100 |
commit | 3e8081514d28871f8c780550719b2ea481b038c3 (patch) | |
tree | 89abbdf64bf6f8d9374afe9fc1f8cd4f5856d88b /sway/commands.c | |
parent | 0d4c31edcd49e1780da9f637474adeb09d3b11c7 (diff) |
Fix spelling mistakes
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c index 3cc84062..c1009f85 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -758,7 +758,7 @@ static struct cmd_results *cmd_mode(int argc, char **argv) { break; } } - // Create mode if it doesnt exist + // Create mode if it doesn't exist if (!mode && mode_make) { mode = malloc(sizeof*mode); mode->name = strdup(mode_name); @@ -1917,7 +1917,7 @@ static struct cmd_results *_do_split(int argc, char **argv, int layout) { } swayc_t *focused = get_focused_container(&root_container); - // Case of floating window, dont split + // Case of floating window, don't split if (focused->is_floating) { return cmd_results_new(CMD_SUCCESS, NULL, NULL); } @@ -2164,7 +2164,7 @@ static struct cmd_results *cmd_workspace(int argc, char **argv) { sway_log(L_DEBUG, "Assigning workspace %s to output %s", argv[0], argv[2]); list_add(config->workspace_outputs, wso); if (!config->reading) { - // TODO: Move workspace to output. (dont do so when reloading) + // TODO: Move workspace to output. (don't do so when reloading) } } } |