Browse Source

Edited small typo on script_commands.txt

Signed-off-by: nanakiwurtz <nanakiwurtz240@gmail.com>
nanakiwurtz 9 years ago
parent
commit
486495cab8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/script_commands.txt

+ 1 - 1
doc/script_commands.txt

@@ -7632,7 +7632,7 @@ Example:
 	.@maximum = max( .@testarray ); // .@maximum will be equal to 12
 	
 	.@minimum = min( -6, 1, 2, 3, .@testarray ); // .@minimum will be equal to -6
-	.@maximum = max( -6, 1, 2, 3, .@testarray ); // .@minimum will be equal to 12
+	.@maximum = max( -6, 1, 2, 3, .@testarray ); // .@maximum will be equal to 12
 
 ---------------------------------------