From e0441630859f631aeea6b4cecaba3fa432335a1a Mon Sep 17 00:00:00 2001 From: jannick0 Date: Sun, 19 Apr 2020 13:47:42 +0200 Subject: [PATCH] [trie.h] pattern definition: fix documentation The fix makes the definition of `\n` consistent with the examples given below the definition. Please note that I did not check this against how it is implemented in the code. --- src/dict/trie.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dict/trie.h b/src/dict/trie.h index e55e04bc6..75c375eff 100644 --- a/src/dict/trie.h +++ b/src/dict/trie.h @@ -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