diff --git a/spec/compiler/build_tables/follow_sets_spec.cc b/spec/compiler/build_tables/follow_sets_spec.cc index 21d24a7d..41c9b3ad 100644 --- a/spec/compiler/build_tables/follow_sets_spec.cc +++ b/spec/compiler/build_tables/follow_sets_spec.cc @@ -14,7 +14,7 @@ describe("computing FOLLOW sets", []() { { "B", sym("b") }, }, {}); - it("all of the starting non-terminals for the item, and their following terminals", [&]() { + it("includes all of the starting non-terminals for the item, and their following terminals", [&]() { ParseItem item(Symbol("C"), choice({ seq({ sym("A"), choice({ sym("x"), sym("y") }) }), seq({ sym("B"), sym("z") }), @@ -48,4 +48,4 @@ describe("computing FOLLOW sets", []() { }); }); -END_TEST \ No newline at end of file +END_TEST