From a733d31634dbb19a99405d5ffd83d31bb660c31c Mon Sep 17 00:00:00 2001 From: maxbrunsfeld Date: Wed, 12 Mar 2014 13:06:02 -0700 Subject: [PATCH] Fix spec wording in follow sets spec --- spec/compiler/build_tables/follow_sets_spec.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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