From 8bee9d8fb95b0474c33f2d2a088dc56292405c15 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 2 Oct 2014 11:52:58 -0700 Subject: [PATCH] Fix typo in parser spec descriptions --- spec/runtime/parser_spec.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)))"));