Fixed a typo when converting from the term IBM to the term jakarta in the boosting example.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149757 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Peter Carlson 2002-05-16 14:04:14 +00:00
parent 0b4bc28cf8
commit d1877d2239
2 changed files with 4 additions and 4 deletions

View File

@ -413,7 +413,7 @@
</tr>
</table>
</div>
<p>This will make documents with the term IBM appear more relevant. You can also boost Phrase Terms as in the example: </p>
<p>This will make documents with the term jakarta appear more relevant. You can also boost Phrase Terms as in the example: </p>
<div align="left">
<table cellspacing="4" cellpadding="0" border="0">
<tr>
@ -433,7 +433,7 @@
</tr>
</table>
</div>
<p>By default, the boost factor is 1.</p>
<p>By default, the boost factor is 1. Although, the boost factor must be positive, it can be less than 1 (i.e. .2)</p>
</blockquote>
</td></tr>
<tr><td><br/></td></tr>

View File

@ -79,10 +79,10 @@
<p>and you want the term "jakarta" to be more relevant boost it using the ^ symbol along with the boost factor next to the term.
You would type:</p>
<source>jakarta^4 apache</source>
<p>This will make documents with the term IBM appear more relevant. You can also boost Phrase Terms as in the example: </p>
<p>This will make documents with the term jakarta appear more relevant. You can also boost Phrase Terms as in the example: </p>
<source>"jakarta apache"^4 "jakarta lucene"</source>
<p>By default, the boost factor is 1.</p>
<p>By default, the boost factor is 1. Although, the boost factor must be positive, it can be less than 1 (i.e. .2)</p>
</subsection>
</section>