This commit is contained in:
robert-bor 2014-02-08 15:25:16 +01:00
parent 04d5c38b57
commit d036ee9440

View File

@ -135,7 +135,7 @@
<p>In this case, it will only find one match, whereas it would normally find four. The sugarcane/canesugar words
are discarded because they are partial matches.</p>
<p>Some text are WrItTeN in combinations of lowercase and uppercase and therefore hard to identify. You can instruct
<p>Some text is WrItTeN in combinations of lowercase and uppercase and therefore hard to identify. You can instruct
the Trie to lowercase the entire searchtext to ease the matching process.</p>
<div class="highlight highlight-java"><pre> <span class="n">Trie</span> <span class="n">trie</span> <span class="o">=</span> <span class="k">new</span> <span class="n">Trie</span><span class="o">().</span><span class="na">caseInsensitive</span><span class="o">();</span>