diff options
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r-- | doc/script_commands.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 4f7509a70..9969ff1a8 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -7426,7 +7426,7 @@ in the count parameter. Example: replacestr("testing tester", "test", "dash"); //returns "dashing dasher" replacestr("Donkey", "don", "mon", 0); //returns "monkey" - replacestr("test test test test test", "yay", 0, 3); //returns "yay yay yay test test" + replacestr("test test test test test", "test", "yay", 0, 3); //returns "yay yay yay test test" --------------------------------------- |