summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ) {