diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-09 17:24:37 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-09 17:24:37 +0100 |
commit | 7da462c139ee018d29dc0225acc2b6ca735a1839 (patch) | |
tree | 0c65e360ec0e9c9822da9db267b8d8d61248247b /src | |
parent | cf28be3242d57d08bd3666bbce4f60ed67de3022 (diff) | |
download | rspamd-7da462c139ee018d29dc0225acc2b6ca735a1839.tar.gz rspamd-7da462c139ee018d29dc0225acc2b6ca735a1839.zip |
Add @example tag.
Diffstat (limited to 'src')
-rw-r--r-- | src/lua/lua_trie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_trie.c b/src/lua/lua_trie.c index 9c0781c5e..63b716756 100644 --- a/src/lua/lua_trie.c +++ b/src/lua/lua_trie.c @@ -34,7 +34,7 @@ * this algorithm is at most O(n + m + z), where `n` is the length of text, `m` is a length of pattern and `z` is a number of patterns in the text. * * Here is a typical example of trie usage: - + * @example local rspamd_trie = require "rspamd_trie" local patterns = {'aab', 'ab', 'bcd\0ef'} |