aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/bar/gaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/bar/gaps.c')
-rw-r--r--sway/commands/bar/gaps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/bar/gaps.c b/sway/commands/bar/gaps.c
index f99966b4..9fa3e756 100644
--- a/sway/commands/bar/gaps.c
+++ b/sway/commands/bar/gaps.c
@@ -21,7 +21,7 @@ struct cmd_results *bar_cmd_gaps(int argc, char **argv) {
21 int amount = strtol(argv[i], &end, 10); 21 int amount = strtol(argv[i], &end, 10);
22 if (strlen(end) && strcasecmp(end, "px") != 0) { 22 if (strlen(end) && strcasecmp(end, "px") != 0) {
23 return cmd_results_new(CMD_INVALID, 23 return cmd_results_new(CMD_INVALID,
24 "Expected 'bar [<bar-id>] gaps <all> | <horizonal> " 24 "Expected 'bar [<bar-id>] gaps <all> | <horizontal> "
25 "<vertical> | <top> <right> <bottom> <left>'"); 25 "<vertical> | <top> <right> <bottom> <left>'");
26 } 26 }
27 27