Explorar el Código

Edited small typo on script_commands.txt

Signed-off-by: nanakiwurtz <nanakiwurtz240@gmail.com>
nanakiwurtz hace 9 años
padre
commit
486495cab8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 
 ---------------------------------------