summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTudor Brindus <me@tbrindus.ca>2020-06-19 15:35:09 -0400
committerSimon Ser <contact@emersion.fr>2020-06-19 22:48:53 +0200
commiteeb90a7963cf2a846b6c9ce32f4796ac28a8629f (patch)
tree0c0ab51d63efb9232895f286936e9e594f09a7b4
parent2270b4c21300338b8819b9a45b418fa13f6f74c6 (diff)
input_cmd_click_method: fix typo in error text
-rw-r--r--sway/commands/input/click_method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c
index 03fcb458f..919c7cb7d 100644
--- a/sway/commands/input/click_method.c
+++ b/sway/commands/input/click_method.c
@@ -23,7 +23,7 @@ struct cmd_results *input_cmd_click_method(int argc, char **argv) {
ic->click_method = LIBINPUT_CONFIG_CLICK_METHOD_CLICKFINGER;
} else {
return cmd_results_new(CMD_INVALID,
- "Expected 'click_method <none|button_areas|clickfinger'>");
+ "Expected 'click_method <none|button_areas|clickfinger>'");
}
return cmd_results_new(CMD_SUCCESS, NULL);