From 6203f9c32567c1829cd6f01331058a547e9777fb Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Tue, 28 Oct 2025 17:50:55 -0700 Subject: [PATCH] (FIX): Forgot this somehow --- lib/parser.h | 2 +- lib/structureNode.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/parser.h b/lib/parser.h index ae01214..12ef8b3 100644 --- a/lib/parser.h +++ b/lib/parser.h @@ -122,8 +122,8 @@ private: std::unique_ptr ParseParagraph(); std::unique_ptr ParseHeading(); std::unique_ptr ParseList(bool ordered); - vector> ParseInline(); std::unique_ptr ParseCodeBlock(); + vector> ParseInline(); // The only differences are the exit condition vector> ParseInlineHeading(); diff --git a/lib/structureNode.h b/lib/structureNode.h index d8632d3..186268e 100644 --- a/lib/structureNode.h +++ b/lib/structureNode.h @@ -114,10 +114,10 @@ public: /** * @desc A code block container node. * - * This node is used to wrap a code block node. When three '`' are used a + * This node is used to wrap a code block node. When three '`' are used a * code block should be created. This node's children are expected to be simple - * text nodes - containing no formatting at all. Since code blocks are not parsed - * any deeper then their parents. + * text nodes - containing no formatting at all. Since code blocks are not + * parsed any deeper then their parents. * * @author Hayden Hargreaves (hhargreaves2006@gmail.com) */