aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-02-17 20:16:23 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-02-18 15:11:48 -0500
commit0940a46c114cef62e1d666a3038bf5e18d81ba95 (patch)
tree866644622362356dec4b2a396ddd9c52b01d0447
parentworkspace_next_name: fallback to next available number (diff)
downloadsway-0940a46c114cef62e1d666a3038bf5e18d81ba95.tar.gz
sway-0940a46c114cef62e1d666a3038bf5e18d81ba95.tar.zst
sway-0940a46c114cef62e1d666a3038bf5e18d81ba95.zip
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,
12 12
13static const char expected_syntax[] = "Expected 'cursor <move> <x> <y>' or " 13static const char expected_syntax[] = "Expected 'cursor <move> <x> <y>' or "
14 "'cursor <set> <x> <y>' or " 14 "'cursor <set> <x> <y>' or "
15 "'curor <press|release> <button[1-9]|event-name-or-code>'"; 15 "'cursor <press|release> <button[1-9]|event-name-or-code>'";
16 16
17static struct cmd_results *handle_command(struct sway_cursor *cursor, 17static struct cmd_results *handle_command(struct sway_cursor *cursor,
18 int argc, char **argv) { 18 int argc, char **argv) {