diff options
author | Jacob Fenton <jacob+github@dfenton.xyz> | 2024-04-01 10:15:55 -0500 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-03 15:59:40 +0100 |
commit | 421cbe75fa1bfbd4bc271bf233ede15836de760d (patch) | |
tree | 2a6e07bbfc1fdbe913852547227d3bb2404f359b | |
parent | e50ea0c8f53c74919fb61a07895383b69fb3f2ae (diff) | |
download | tour-421cbe75fa1bfbd4bc271bf233ede15836de760d.tar.gz tour-421cbe75fa1bfbd4bc271bf233ede15836de760d.zip |
Put closing brackets in the correct place.
-rw-r--r-- | src/tour.gleam | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tour.gleam b/src/tour.gleam index 3f0ec4a..5dc662d 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -663,12 +663,12 @@ fn lesson_page_render(lesson: Lesson) -> String { navlink("Next", lesson.next), ]), ]), - ]), - h("section", [#("id", "right")], [ - h("section", [#("id", "editor")], [ - h("div", [#("id", "editor-target")], []), + h("section", [#("id", "right")], [ + h("section", [#("id", "editor")], [ + h("div", [#("id", "editor-target")], []), + ]), + h("aside", [#("id", "output")], []), ]), - h("aside", [#("id", "output")], []), ]), ], scripts: ScriptConfig( |