diff options
Diffstat (limited to 'doc/markdown/modules/trie.md')
-rw-r--r-- | doc/markdown/modules/trie.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/markdown/modules/trie.md b/doc/markdown/modules/trie.md index 997f4d0df..18e9f6808 100644 --- a/doc/markdown/modules/trie.md +++ b/doc/markdown/modules/trie.md @@ -10,7 +10,7 @@ This module provides a convenient interface to the search trie structure. Here is an example of trie configuration: -~~~nginx +~~~ucl trie { # Each subsection defines a single rule with associated symbol SYMBOL1 { @@ -36,4 +36,4 @@ Despite of the fact that aho-corasic trie is very fast, it supports merely plain strings. Moreover, it cannot distinguish words boundaries, for example, a string `test` will be found in texts `test`, `tests` or even `123testing`. Therefore, it might be used to search some concrete and relatively specific patterns and should -not be used for words match.
\ No newline at end of file +not be used for words match. |