docs: spelling

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@802215 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-08-07 21:33:31 +00:00
parent 6b9be8fccb
commit 05f000d36a
1 changed files with 4 additions and 2 deletions

View File

@ -284,7 +284,7 @@
<!-- The PatternReplaceFilter gives you the flexibility to use
Java Regular expression to replace any sequence of characters
matching a pattern with an arbitrary replacement string,
which may include back references to portions of the orriginal
which may include back references to portions of the original
string matched by the pattern.
See the Java Regular Expression documentation for more
@ -309,7 +309,9 @@
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<!--
Attributes for DelimitedPayloadTokenFilterFactory:
The DelimitedPayloadTokenFilter can put payloads on tokens... for example,
a token of "foo|1.4" would be indexed as "foo" with a payload of 1.4f
Attributes of the DelimitedPayloadTokenFilterFactory :
"delimiter" - a one character delimiter. Default is | (pipe)
"encoder" - how to encode the following value into a playload
float -> org.apache.lucene.analysis.payloads.FloatEncoder,