Fix typo in parser spec descriptions

This commit is contained in:
Max Brunsfeld 2014-10-02 11:52:58 -07:00
parent aab449635f
commit 8bee9d8fb9

View file

@ -253,7 +253,7 @@ describe("Parser", [&]() {
insert_text(strlen("ab"), "XYZ");
});
it("updates the parse three", [&]() {
it("updates the parse tree", [&]() {
AssertThat(ts_node_string(root), Equals(
"(DOCUMENT (product (variable) (number)))"));
@ -274,7 +274,7 @@ describe("Parser", [&]() {
insert_text(strlen("abc"), "XYZ");
});
it("updates the parse three", [&]() {
it("updates the parse tree", [&]() {
AssertThat(ts_node_string(root), Equals(
"(DOCUMENT (product (variable) (number)))"));