diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2020-06-19 15:35:09 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2020-06-19 15:35:09 -0400 |
| commit | 0a2e799cb4e7ae9f69f32edaa1b6b568d3c77a3a (patch) | |
| tree | 0c0ab51d63efb9232895f286936e9e594f09a7b4 | |
| parent | 968ef6e7714fe4c71cb701d51e39b92d49639422 (diff) | |
input_cmd_click_method: fix typo in error text
| -rw-r--r-- | sway/commands/input/click_method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input/click_method.c b/sway/commands/input/click_method.c index 03fcb458..919c7cb7 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); |
