aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2019-02-17 20:16:23 -0500
committerFurkan Sahin <furkan-dev@proton.me>2019-02-17 20:16:23 -0500
commit727b3a34508e7ec63c9cf3ee9039c5e55e8283e3 (patch)
tree866644622362356dec4b2a396ddd9c52b01d0447
parentd7399aee35d5026283c594f0f5e6e803aa6ecf91 (diff)
seat_cmd_cursor: fix typo in expected syntax
This just fixes a typo in the expected syntax for seat_cmd_cursor
-rw-r--r--sway/commands/seat/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/seat/cursor.c b/sway/commands/seat/cursor.c
index 0c7609ea..085e6a33 100644
--- a/sway/commands/seat/cursor.c
+++ b/sway/commands/seat/cursor.c
@@ -12,7 +12,7 @@ static struct cmd_results *press_or_release(struct sway_cursor *cursor,
static const char expected_syntax[] = "Expected 'cursor <move> <x> <y>' or "
"'cursor <set> <x> <y>' or "
- "'curor <press|release> <button[1-9]|event-name-or-code>'";
+ "'cursor <press|release> <button[1-9]|event-name-or-code>'";
static struct cmd_results *handle_command(struct sway_cursor *cursor,
int argc, char **argv) {