From e051e33482bce4bd733f162e0d2beaae8ec291ce Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Wed, 31 Mar 2021 01:54:58 +0300 Subject: [PATCH] Removed incorrect info (#14) * Removed incorrect info The manual says Luau does not support hexadecimal \0x, Unicode \u and \z when this clearly isn't the case. This is also quite confusing as just a bit below it says it does support them. Co-authored-by: Arseny Kapoulkine --- docs/_pages/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/syntax.md b/docs/_pages/syntax.md index 9080f71..0ae3cba 100644 --- a/docs/_pages/syntax.md +++ b/docs/_pages/syntax.md @@ -21,7 +21,7 @@ local function tree_insert(tree, x) end ``` -Note that future versions of Lua extend the Lua 5.1 syntax with the following features; with the exception of the string literals, these are **not** supported by Luau: +Note that future versions of Lua extend the Lua 5.1 syntax with the following features; Luau does support string literal extensions but does not support other features from this list: - hexadecimal (`\x`), Unicode (`\u`) and `\z` escapes for string literals - goto statements and labels