summaryrefslogtreecommitdiff
path: root/doc/script_commands.txt
diff options
context:
space:
mode:
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".
---------------------------------------