From 710547df837f71214874ce6eaf50908389d32f88 Mon Sep 17 00:00:00 2001 From: tacheometry <39647014+tacheometry@users.noreply.github.com> Date: Mon, 15 Mar 2021 01:29:46 +0200 Subject: [PATCH] Fix paranthesis (#13) --- docs/_pages/typecheck.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_pages/typecheck.md b/docs/_pages/typecheck.md index 74ffc30..d53fbc7 100644 --- a/docs/_pages/typecheck.md +++ b/docs/_pages/typecheck.md @@ -108,7 +108,7 @@ local function greetings(name) return greetingsHelper(name) end -print(greetings("Alexander") -- ok +print(greetings("Alexander")) -- ok print(greetings({name = "Alexander"}) -- not ok ``` @@ -343,4 +343,4 @@ module.Quux = "Hello, world!" return module ``` -There are some caveats here though. For instance, the require path must be resolvable statically, otherwise Luau cannot accurately type check it. \ No newline at end of file +There are some caveats here though. For instance, the require path must be resolvable statically, otherwise Luau cannot accurately type check it.