aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-10-23 10:40:03 +0100
committerFurkan Sahin <furkan-dev@proton.me>2018-10-23 10:40:03 +0100
commita96cd59109bb6b98e8a2f8dd209035fd0f0d02c6 (patch)
tree32f4a9782328486f529c09fe2bb8092c25b9993d /include
parenteae5437a2aad390ddd51abaf74472c538524d79e (diff)
commands: replace EXPECTED_LESS_THAN with EXPECTED_AT_MOST
This makes it a bit more obvious what the expected number of arguments is.
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 791b37dc..6606775a 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -40,7 +40,7 @@ struct cmd_results {
enum expected_args {
EXPECTED_AT_LEAST,
- EXPECTED_LESS_THAN,
+ EXPECTED_AT_MOST,
EXPECTED_EQUAL_TO
};