REFACTOR [a vs an]

From /dev/humancontroller.
This commit is contained in:
Zack Middleton 2012-06-18 16:31:16 +00:00
parent 4bd24d3182
commit f3e7012bdb
27 changed files with 39 additions and 39 deletions

View file

@ -201,7 +201,7 @@ int PS_ExpectTokenType(script_t *script, int type, int subtype, token_t *token);
int PS_ExpectAnyToken(script_t *script, token_t *token);
//returns true when the token is available
int PS_CheckTokenString(script_t *script, char *string);
//returns true an reads the token when a token with the given type is available
//returns true and reads the token when a token with the given type is available
int PS_CheckTokenType(script_t *script, int type, int subtype, token_t *token);
//skip tokens until the given token string is read
int PS_SkipUntilString(script_t *script, char *string);