aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser_keywords.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-09-03 13:24:01 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-09-03 13:24:01 -0700
commit1a59346b51e9ac5a89e303374f4a7ce1647d4c98 (patch)
tree2aae41b1205b7ae2e14eecb796a934c30c350ddc /parser_keywords.h
parentff124465fdfe39096ad14226a6c8aaa08d17bc7f (diff)
Changed "elseif" to "else if"
Diffstat (limited to 'parser_keywords.h')
-rw-r--r--parser_keywords.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser_keywords.h b/parser_keywords.h
index 803df49d..5bad85aa 100644
--- a/parser_keywords.h
+++ b/parser_keywords.h
@@ -26,7 +26,7 @@ bool parser_keywords_is_switch( const wcstring &cmd );
/**
- Tests if the specified commands parameters should be interpreted as another command, which will be true if the command is either 'command', 'exec', 'if', 'while', 'elseif', or 'builtin'.
+ Tests if the specified commands parameters should be interpreted as another command, which will be true if the command is either 'command', 'exec', 'if', 'while', or 'builtin'. This does not handle "else if" which is more complicated.
\param cmd The command name to test
\return 1 of the command parameter is a command, 0 otherwise