From c563a09990ae275c1b8276051f887c229747d8e9 Mon Sep 17 00:00:00 2001 From: Varun Saini <61795485+VarunSaini02@users.noreply.github.com> Date: Fri, 30 Jun 2023 11:29:49 -0700 Subject: [PATCH] Fix math.luau example formatting --- rfcs/require-by-string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/require-by-string.md b/rfcs/require-by-string.md index ca498e9a..dd2d77f5 100644 --- a/rfcs/require-by-string.md +++ b/rfcs/require-by-string.md @@ -16,7 +16,7 @@ Currently, relative paths are always evaluated relative to the current working d Suppose the module `math.luau` is located in `/Users/JohnDoe/LuauModules/Math` and contains the following: -```lua= +```lua -- Beginning of /Users/JohnDoe/LuauModules/Math/math.luau local sqrt = require("../MathHelperFunctions/sqrt") ```