Skip to content

Commit

Permalink
Fixes misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
bwalsh committed Oct 11, 2019
1 parent 0a5edb3 commit 1fd6d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kvindex/kvindex.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ func (idx *KVIndex) termGetCount(tx kvi.KVTransaction, field string, ttype TermT
// RemoveDoc removes a document from the index: TODO
func (idx *KVIndex) RemoveDoc(docID string) error {
err := idx.kv.Update(func(tx kvi.KVTransaction) error {
log.WithFields(log.Fields{"document_id": docID}).Debug("KVIndex: deleteing document")
log.WithFields(log.Fields{"document_id": docID}).Debug("KVIndex: deleting document")
docKey := DocKey(docID)
data, err := tx.Get(docKey)
if err != nil {
Expand Down

0 comments on commit 1fd6d85

Please sign in to comment.