From cde0c51cd6de6681acb2ab492b03495e9b1023c4 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 8 Jul 2018 16:58:19 +1000 Subject: [PATCH] Tweak comment to make it less ambiguous --- src/regex_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/regex_impl.cc b/src/regex_impl.cc index 1f8b492d..0511c0db 100644 --- a/src/regex_impl.cc +++ b/src/regex_impl.cc @@ -903,8 +903,8 @@ private: } // Mutate start_desc with informations on which Codepoint could start a match. - // Returns true if the node can not consume the char, in which case the next node - // would still be relevant for the parent node start chars computation. + // Returns true if the node possibly does not consume the char, in which case + // the next node would still be relevant for the parent node start chars computation. template bool compute_start_desc(ParsedRegex::NodeIndex index, CompiledRegex::StartDesc& start_desc) const