mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-19 06:53:36 +08:00
[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.
This commit is contained in:
parent
cdebe13d81
commit
e044163085
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user