From f12f1d6f670b6b97d23de0266767784228f4be93 Mon Sep 17 00:00:00 2001 From: Eric Mertens Date: Wed, 3 May 2023 14:09:22 -0700 Subject: [PATCH] spelling --- 2022/11.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2022/11.cpp b/2022/11.cpp index dd0f1b0..db4ea3e 100644 --- a/2022/11.cpp +++ b/2022/11.cpp @@ -44,11 +44,11 @@ struct Monkey { struct Grammar : public qi::grammar()> { qi::rule monkey; - qi::rule()> monkies; + qi::rule()> monkeys; - Grammar() : base_type{monkies} { + Grammar() : base_type{monkeys} { using namespace qi::labels; - monkies = monkey % "\n"; + monkeys = monkey % "\n"; monkey = "Monkey " >> qi::omit[qi::ulong_long] >>