summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
authorDastgir <dastgirpojee@rocketmail.com>2015-04-11 15:58:21 +0530
committerDastgir <dastgirpojee@rocketmail.com>2015-04-11 15:58:21 +0530
commit1b10c7ccd946aaa983d678f9aee6da5e0a315686 (patch)
tree9efbd0a3c2a99301e6375ccc6cb6b279ad72edd5 /doc/script_commands.txt
parent3d314c5c4ae9b33bd722ce204fe4ffbc192b2087 (diff)
downloadhercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.gz
hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.bz2
hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.xz
hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.zip
Minor typo fix on setd description
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 c3c0f7ab6..f63a4b169 100644
--- a/doc/script_commands.txt
+++ b/doc/script_commands.txt
@@ -1340,7 +1340,7 @@ Examples:
setd ".@var$", "Poporing";
mes .@var$; // Displays "Poporing".
- setd ".@" + $var$ + "123$", "Poporing is cool";
+ setd ".@" + .@var$ + "123$", "Poporing is cool";
mes .@Poporing123$; // Displays "Poporing is cool".
---------------------------------------