From 486495cab83a255c06cf18410d1968c5db45c590 Mon Sep 17 00:00:00 2001 From: nanakiwurtz Date: Wed, 6 Apr 2016 13:12:01 +0700 Subject: [PATCH] Edited small typo on script_commands.txt Signed-off-by: nanakiwurtz --- doc/script_commands.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 8f6d1efcef..c8d0f900a5 100644 --- a/doc/script_commands.txt +++ b/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 ---------------------------------------