From ea0be6e737d29b60a987c301f1cfb66174b881ad Mon Sep 17 00:00:00 2001 From: scrawl Date: Sun, 3 Jan 2016 00:08:05 +0100 Subject: [PATCH] Update ScriptArgs documentation --- components/compiler/extensions.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/compiler/extensions.hpp b/components/compiler/extensions.hpp index 9fb9bdb95..2adf25a57 100644 --- a/components/compiler/extensions.hpp +++ b/components/compiler/extensions.hpp @@ -20,9 +20,9 @@ namespace Compiler l - Integer
s - Short
S - String, case preserved
- x - Optional, ignored string argument - X - Optional, ignored numeric expression - z - Optional, ignored string or numeric argument + x - Optional, ignored string argument. Emits a parser warning when this argument is supplied.
+ X - Optional, ignored numeric expression. Emits a parser warning when this argument is supplied.
+ z - Optional, ignored string or numeric argument. Emits a parser warning when this argument is supplied.
j - A piece of junk (either . or a specific keyword) **/ typedef std::string ScriptArgs;