From f0ab2d900633af895a303a95b6a05a65dd3781ae Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Mon, 20 Oct 2025 12:12:51 -0700 Subject: [PATCH] (FIX): Cleaned up a little bit, removed some notes. --- input.md | 4 +++- lib/node.h | 1 - lib/parser.cpp | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/input.md b/input.md index 6013472..72e47cf 100644 --- a/input.md +++ b/input.md @@ -13,4 +13,6 @@ this is too far` *this is **words*** -## **Hello world** +## **Hello world** + +### hello world diff --git a/lib/node.h b/lib/node.h index 20b04d5..6009d1c 100644 --- a/lib/node.h +++ b/lib/node.h @@ -18,7 +18,6 @@ /// try to avoid using raw pointers, and only use references when needed. /// Reference: https://www.youtube.com/watch?v=AmjoK55h68Y&t=166s -// NOTE ABC class Node { protected: /** diff --git a/lib/parser.cpp b/lib/parser.cpp index 7984ef2..54372e5 100644 --- a/lib/parser.cpp +++ b/lib/parser.cpp @@ -288,7 +288,6 @@ void Parser::Consume(size_t count) { this->position += count; }; bool Parser::IsEOF() { return this->position >= this->content.length(); }; void Parser::ConsumeWhiteSpace() { - // TODO: This can be optimized using an accumulator and then consuming char c = Peek(); while (c == ' ' || c == '\t' || c == '\n') { Consume();