From b4733da859a24a825da914210bfbcfd6b7d3e679 Mon Sep 17 00:00:00 2001 From: Sebastian Waldman <63021947+dfn-slxxp@users.noreply.github.com> Date: Sun, 1 Feb 2026 00:42:04 -0500 Subject: [PATCH] make the code work (remove capitalized n in namespace) --- Site/modding/lynk-walkthrough/code.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Site/modding/lynk-walkthrough/code.md b/Site/modding/lynk-walkthrough/code.md index aebb6b60..018c8bd7 100644 --- a/Site/modding/lynk-walkthrough/code.md +++ b/Site/modding/lynk-walkthrough/code.md @@ -9,7 +9,7 @@ Open the Lynk.cs File and ctrlA backspace. The following is a blank template for a robot: ```cs title="/src/components/Lynk.cs" -Namespace Prefabs.Reefscape.Robots._9496 +namespace Prefabs.Reefscape.Robots._9496 { public class Lynk: ReefscapeRobotBase { @@ -366,4 +366,4 @@ private void PlacePiece() } ``` -Now back to the editor… \ No newline at end of file +Now back to the editor…