diff --git a/spec/runtime/parser_spec.cc b/spec/runtime/parser_spec.cc index 16a6425f..fc53bb2b 100644 --- a/spec/runtime/parser_spec.cc +++ b/spec/runtime/parser_spec.cc @@ -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)))"));