From 391d83ddeda4e64308bfc6491f32d199390a1f98 Mon Sep 17 00:00:00 2001 From: menarulalam <35981995+menarulalam@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:47:34 -0700 Subject: [PATCH] Remove more unrelated parts. --- rfcs/require-by-string-relative-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/require-by-string-relative-paths.md b/rfcs/require-by-string-relative-paths.md index 54ac87d2..2c52ab21 100644 --- a/rfcs/require-by-string-relative-paths.md +++ b/rfcs/require-by-string-relative-paths.md @@ -233,7 +233,7 @@ large-luau-project ### Roblox specifics -In the Roblox engine, developers can reasonably expect something similar to be implemented. Assuming a central package management system were available for storing packages and providing default aliases to require them, a Roblox Script could contain `local Roact = require("Roact")`, and everything would "just work". +In the Roblox engine, developers can reasonably expect something similar to be implemented. A Roblox Script could contain `local dependency = require("./dependency")`. However, when requiring a "floating" ModuleScript (not part of this central package management system), there will not be a default alias provided. This is bad style and will not be encouraged.