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.