diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-10-23 10:40:03 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-10-23 10:40:03 +0100 |
| commit | a96cd59109bb6b98e8a2f8dd209035fd0f0d02c6 (patch) | |
| tree | 32f4a9782328486f529c09fe2bb8092c25b9993d /include | |
| parent | eae5437a2aad390ddd51abaf74472c538524d79e (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.h | 2 |
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 }; |
