From 6e5545274ee383e94b20f8cb94077a20a95e3793 Mon Sep 17 00:00:00 2001 From: Akkarinage Date: Thu, 6 Mar 2014 11:49:25 +0000 Subject: [PATCH] Variable typo (bugreport:8722) --- doc/script_commands.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/script_commands.txt b/doc/script_commands.txt index a4095d5e01..d6e4d20747 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -1231,7 +1231,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". ---------------------------------------