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: