From f493918f5dc39160895b5de3b3adca65179b9e5c Mon Sep 17 00:00:00 2001
From: tacheometry <39647014+tacheometry@users.noreply.github.com>
Date: Mon, 15 Mar 2021 00:15:34 +0200
Subject: [PATCH] Fix paranthesis

---
 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 74ffc30a..d53fbc71 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.