Merge pull request #2952 from jannick0/patch-1

[trie.h] pattern definition: fix documentation
This commit is contained in:
Amit D 2020-04-27 23:44:48 +03:00 committed by GitHub
commit acc4c8bff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,7 +197,7 @@ class Trie : public Dawg {
// To denote a character class use one of:
// \c - unichar for which UNICHARSET::get_isalpha() is true (character)
// \d - unichar for which UNICHARSET::get_isdigit() is true
// \n - unichar for which UNICHARSET::get_isdigit() and
// \n - unichar for which UNICHARSET::get_isdigit() or
// UNICHARSET::isalpha() are true
// \p - unichar for which UNICHARSET::get_ispunct() is true
// \a - unichar for which UNICHARSET::get_islower() is true