From c4288457dbcade2124493635c39ee91754ddf1a0 Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Wed, 20 Jan 2021 00:42:09 -0800 Subject: [PATCH] Explaining resolved/not found/unresolvable is not necessary --- docs/typecheck.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/typecheck.md b/docs/typecheck.md index 3bd0584d..56dab18e 100644 --- a/docs/typecheck.md +++ b/docs/typecheck.md @@ -339,8 +339,4 @@ module.Quux = "Hello, world!" return module ``` -There are some caveats here though. The path must be resolvable statically, otherwise Luau cannot accurately type check it. There are three kinds of outcome for each require paths: - -* Resolved - Luau was able to resolve this path statically, -* Module not found - The module at this path does not exist, and -* Unresolvable - This require path may resolve correctly at runtime +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