summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-10-24 07:42:20 -0200
committershennetsind <ind@henn.et>2013-10-24 07:42:20 -0200
commit03d7f7a15a5f7886385fece3164eb7dfedcee303 (patch)
tree0abb29a815e5e09da2cc44880d2db4b176f0b931 /doc/script_commands.txt
parent08ce9564bb231f18f7f3f31beafd19624bb514e4 (diff)
downloadhercules-03d7f7a15a5f7886385fece3164eb7dfedcee303.tar.gz
hercules-03d7f7a15a5f7886385fece3164eb7dfedcee303.tar.bz2
hercules-03d7f7a15a5f7886385fece3164eb7dfedcee303.tar.xz
hercules-03d7f7a15a5f7886385fece3164eb7dfedcee303.zip
replacestr documentation fix
From c3cedcbf40a5408aafbac960363fe35f1909cbcf Closes #169 Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'doc/script_commands.txt')
-rw-r--r--doc/script_commands.txt2
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"
---------------------------------------