0
0
Fork 0

fix typos

This commit is contained in:
Marty Schoch 2016-04-02 21:59:30 -04:00
parent 194ee82c80
commit 7892882519
3 changed files with 3 additions and 3 deletions

View File

@ -268,7 +268,7 @@ func TestArabicStemmerFilter(t *testing.T) {
},
},
},
// ShouldntStem
// Shouldn't Stem
{
input: analysis.TokenStream{
&analysis.Token{

View File

@ -86,7 +86,7 @@ func (f *Firestorm) Analyze(d *document.Document) *index.AnalysisResult {
rows := make([]index.IndexRow, 0, rowsCapNeeded)
rv.Rows = append(rows, rv.Rows...)
// walk through the collated information and proccess
// walk through the collated information and process
// once for each indexed field (unique name)
for fieldIndex, tokenFreqs := range fieldTermFreqs {
fieldLength := fieldLengths[fieldIndex]

View File

@ -87,7 +87,7 @@ func (udc *UpsideDownCouch) Analyze(d *document.Document) *index.AnalysisResult
backIndexTermEntries := make([]*BackIndexTermEntry, 0, rowsCapNeeded)
// walk through the collated information and proccess
// walk through the collated information and process
// once for each indexed field (unique name)
for fieldIndex, tokenFreqs := range fieldTermFreqs {
fieldLength := fieldLengths[fieldIndex]