From 72d8c52ac09b78e6ea8b3b667db9d467fe711473 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 25 May 2020 03:40:22 -0400 Subject: [PATCH] spelling: differently --- src/scantoken.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scantoken.cpp b/src/scantoken.cpp index 325de57..9bffe76 100644 --- a/src/scantoken.cpp +++ b/src/scantoken.cpp @@ -171,7 +171,7 @@ void Scanner::ScanBlockEntry() { // Key void Scanner::ScanKey() { - // handle keys diffently in the block context (and manage indents) + // handle keys differently in the block context (and manage indents) if (InBlockContext()) { if (!m_simpleKeyAllowed) throw ParserException(INPUT.mark(), ErrorMsg::MAP_KEY); @@ -199,7 +199,7 @@ void Scanner::ScanValue() { // seems fine) m_simpleKeyAllowed = false; } else { - // handle values diffently in the block context (and manage indents) + // handle values differently in the block context (and manage indents) if (InBlockContext()) { if (!m_simpleKeyAllowed) throw ParserException(INPUT.mark(), ErrorMsg::MAP_VALUE);