From f83470d97bd5e0f323ee5459267b870918515218 Mon Sep 17 00:00:00 2001 From: menarulalam <35981995+menarulalam@users.noreply.github.com> Date: Tue, 14 Nov 2023 15:01:45 -0800 Subject: [PATCH] Update docs/require-by-string-relative-paths.md Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com> --- docs/require-by-string-relative-paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/require-by-string-relative-paths.md b/docs/require-by-string-relative-paths.md index f7eb6e2..3fb4ef1 100644 --- a/docs/require-by-string-relative-paths.md +++ b/docs/require-by-string-relative-paths.md @@ -24,7 +24,7 @@ local sqrt = require("../MathHelperFunctions/sqrt") If we then launched the Luau CLI from the directory `/Users/JohnDoe/Projects/MyCalculator` and required `math.luau` as follows: ```lua -> local math = require("/Users/JohnDoe/LuauModules/Math/math") +local math = require("/Users/JohnDoe/LuauModules/Math/math") ``` This would cause the following: