From b61371760f7e0f0830ce0a2db41a94cc26a97490 Mon Sep 17 00:00:00 2001 From: Menarul Alam Date: Mon, 11 Dec 2023 09:34:08 -0800 Subject: [PATCH] Undid @ for paths --- docs/require-by-string-aliases.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/require-by-string-aliases.md b/docs/require-by-string-aliases.md index 40c5251..0684c27 100644 --- a/docs/require-by-string-aliases.md +++ b/docs/require-by-string-aliases.md @@ -34,7 +34,7 @@ Or even a sub-module: local createElement = require("@Roact/createElement") ``` -Aliases are overrides. Whenever the first component of a path exactly matches a pre-defined alias, it will be replaced before the path is resolved to a file. Alias names are also restricted to the charset `[A-Za-z0-9.\-_]`. We restrict the charset and make them case insensitive because we envision alias names to be primarily used as package names, which tend to be case insensitive and alphanumeric. They also must be preceded with an `@` symbol. +Aliases are overrides. Whenever the first component of a path exactly matches a pre-defined alias, it will be replaced before the path is resolved to a file. Alias names are also restricted to the charset `[A-Za-z0-9.\-_]`. We restrict the charset and make them case insensitive because we envision alias names to be primarily used as package names, which tend to be case insensitive and alphanumeric. They also must be preceded by an `@` symbol. ### Package management @@ -131,7 +131,7 @@ If `.luaurc` contained the following `paths` array: Then, `module.luau` could simply require `dependency.luau` like this: ```lua -local dependency = require("@dependency") +local dependency = require("dependency") -- Instead of: require("../dependencies/dependency") ```