Skip to content

Commit 75ba71a

Browse files
committed
Fix typo in test assert comment
1 parent a8de515 commit 75ba71a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/PegtlTests.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,17 +342,17 @@ TEST(PegtlCase, ParseVariableDefaultEmptyList)
342342
TEST(PegtlCase, AnalyzeMixedGrammar)
343343
{
344344
ASSERT_EQ(0, analyze<mixed_document>(true))
345-
<< "there shuldn't be any infinite loops in the PEG version of the grammar";
345+
<< "there shouldn't be any infinite loops in the PEG version of the grammar";
346346
}
347347

348348
TEST(PegtlCase, AnalyzeExecutableGrammar)
349349
{
350350
ASSERT_EQ(0, analyze<executable_document>(true))
351-
<< "there shuldn't be any infinite loops in the PEG version of the grammar";
351+
<< "there shouldn't be any infinite loops in the PEG version of the grammar";
352352
}
353353

354354
TEST(PegtlCase, AnalyzeSchemaGrammar)
355355
{
356356
ASSERT_EQ(0, analyze<schema_document>(true))
357-
<< "there shuldn't be any infinite loops in the PEG version of the grammar";
357+
<< "there shouldn't be any infinite loops in the PEG version of the grammar";
358358
}

0 commit comments

Comments
 (0)