(FIX): Forgot this somehow

This commit is contained in:
Hayden Hargreaves 2025-10-28 17:50:55 -07:00
parent 1c81d2aa41
commit 6203f9c325
2 changed files with 4 additions and 4 deletions

View File

@ -122,8 +122,8 @@ private:
std::unique_ptr<Node> ParseParagraph(); std::unique_ptr<Node> ParseParagraph();
std::unique_ptr<Node> ParseHeading(); std::unique_ptr<Node> ParseHeading();
std::unique_ptr<Node> ParseList(bool ordered); std::unique_ptr<Node> ParseList(bool ordered);
vector<std::unique_ptr<Node>> ParseInline();
std::unique_ptr<Node> ParseCodeBlock(); std::unique_ptr<Node> ParseCodeBlock();
vector<std::unique_ptr<Node>> ParseInline();
// The only differences are the exit condition // The only differences are the exit condition
vector<std::unique_ptr<Node>> ParseInlineHeading(); vector<std::unique_ptr<Node>> ParseInlineHeading();

View File

@ -114,10 +114,10 @@ public:
/** /**
* @desc A code block container node. * @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 * 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 * text nodes - containing no formatting at all. Since code blocks are not
* any deeper then their parents. * parsed any deeper then their parents.
* *
* @author Hayden Hargreaves (hhargreaves2006@gmail.com) * @author Hayden Hargreaves (hhargreaves2006@gmail.com)
*/ */