diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-04-11 15:58:21 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-04-11 15:58:21 +0530 |
commit | 1b10c7ccd946aaa983d678f9aee6da5e0a315686 (patch) | |
tree | 9efbd0a3c2a99301e6375ccc6cb6b279ad72edd5 | |
parent | 3d314c5c4ae9b33bd722ce204fe4ffbc192b2087 (diff) | |
download | hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.gz hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.bz2 hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.tar.xz hercules-1b10c7ccd946aaa983d678f9aee6da5e0a315686.zip |
Minor typo fix on setd description
-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 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". --------------------------------------- |