]> git.sesse.net Git - plocate/blobdiff - parse_trigrams.h
Correct a comment.
[plocate] / parse_trigrams.h
index c845cdeab93cec0f0803b01d01cda232e422b546..2387c9078c3bd6c0dded9bd8d940289ecee37aa1 100644 (file)
@@ -58,7 +58,7 @@ static constexpr uint32_t PREMATURE_END_UNIGRAM = 0xFF000001;
 
 // Reads a unigram, taking into account escaping (\<foo> becomes <foo>).
 // 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<uint32_t, size_t> read_unigram(const std::string &s, size_t start);