summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2010-03-03 19:18:21 +0000
committerAndrey Nazarov <skuller@skuller.net>2010-03-03 19:18:21 +0000
commit58eb1a84175bfefabb9f10b85afb6fc78bca0fba (patch)
tree44ab51663e5510442a827ab92dbd5d4f0fe62e74
parentad59a391bfcd72eda76f1ebbff5f4ae73256c8db (diff)
Corrected a typo.
-rw-r--r--source/cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cmd.c b/source/cmd.c
index 556c1a3..711ba98 100644
--- a/source/cmd.c
+++ b/source/cmd.c
@@ -917,7 +917,7 @@ char *Cmd_MacroExpandString( const char *text, qboolean aliasHack ) {
if( *start == '{' ) {
// allow ${variable} syntax
start++;
- if( *start == '$' ) { // allow ${$varibale} syntax
+ if( *start == '$' ) { // allow ${$variable} syntax
start++;
}
while( *start ) {