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) */