From e16be5776f55aaad72ab9ba3194332ea6a2dc5d0 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 24 Feb 2022 00:43:38 +0100 Subject: [PATCH] Correct a comment. --- parse_trigrams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse_trigrams.h b/parse_trigrams.h index c845cde..2387c90 100644 --- a/parse_trigrams.h +++ b/parse_trigrams.h @@ -58,7 +58,7 @@ static constexpr uint32_t PREMATURE_END_UNIGRAM = 0xFF000001; // Reads a unigram, taking into account escaping (\ becomes ). // Returns WILDCARD_UNIGRAM if there's an invalid unigram, ie., we found -// a glob character (?, * or a [] group). Returns EOS_UNIGRAM if we went +// a glob character (?, * or a [] group). Returns PREMATURE_END_UNIGRAM if we went // past the end of the string, e.g., a string that ends in a backslash. // The second element is always the length. std::pair read_unigram(const std::string &s, size_t start); -- 2.39.2