Fix spec wording in follow sets spec

This commit is contained in:
maxbrunsfeld 2014-03-12 13:06:02 -07:00
parent dbaacee497
commit a733d31634

View file

@ -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
END_TEST