summaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorDenis Doria <[email protected]>2016-06-05 07:49:33 +0200
committerDenis Doria <[email protected]>2016-06-05 07:49:33 +0200
commit3c3e98b1a3beda5f17f689bfad64dde3bc0bf6ac (patch)
treeb262bccd3d262d7ff144c26b7c8bb3a2f951c396 /sway/commands.c
parent29eb3bf7467d721d89cf4a7925d2e41cda91c606 (diff)
parentd57714e8020870d25be6ce778a36741295f9ba3e (diff)
Merge branch 'master' into variables_corner_cases
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 90a7d421..eab4a1c1 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -427,7 +427,7 @@ static struct cmd_results *cmd_border(int argc, char **argv) {
static struct cmd_results *parse_border_color(struct border_colors *border_colors, const char *cmd_name, int argc, char **argv) {
struct cmd_results *error = NULL;
if (argc != 5) {
- return cmd_results_new(CMD_INVALID, cmd_name, "Requires exact 5 color values");
+ return cmd_results_new(CMD_INVALID, cmd_name, "Requires exactly five color values");
}
uint32_t colors[5];
@@ -476,7 +476,7 @@ static struct cmd_results *cmd_client_background(int argc, char **argv) {
uint32_t background;
if (argc != 1) {
- return cmd_results_new(CMD_INVALID, "client.background", "Expect exact 1 value");
+ return cmd_results_new(CMD_INVALID, "client.background", "Requires exactly one color value");
}
error = add_color("client.background", buffer, argv[0]);
@@ -737,7 +737,7 @@ static struct cmd_results *cmd_floating_minimum_size(int argc, char **argv) {
}
- sway_log(L_DEBUG, "New floating_minimum_size: '%d' x '%d'", config->floating_minimum_width,
+ sway_log(L_DEBUG, "New floating_minimum_size: '%d' x '%d'", config->floating_minimum_width,
config->floating_minimum_height);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);