From 7685a657cad7173a8c7888ec60be3fe54a420e53 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Fri, 1 Jun 2018 13:02:38 +0200 Subject: [PATCH] Fix grammar in highlight error message --- src/highlighter.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/highlighter.cc b/src/highlighter.cc index 66759af5..164ea065 100644 --- a/src/highlighter.cc +++ b/src/highlighter.cc @@ -31,22 +31,22 @@ bool Highlighter::has_children() const Highlighter& Highlighter::get_child(StringView path) { - throw runtime_error("this highlighter do not hold children"); + throw runtime_error("this highlighter does not hold children"); } void Highlighter::add_child(HighlighterAndId&& hl) { - throw runtime_error("this highlighter do not hold children"); + throw runtime_error("this highlighter does not hold children"); } void Highlighter::remove_child(StringView id) { - throw runtime_error("this highlighter do not hold children"); + throw runtime_error("this highlighter does not hold children"); } Completions Highlighter::complete_child(StringView path, ByteCount cursor_pos, bool group) const { - throw runtime_error("this highlighter do not hold children"); + throw runtime_error("this highlighter does not hold children"); } void Highlighter::fill_unique_ids(Vector& unique_ids) const