You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/05/22 17:38:11 UTC

lucene-solr:master: Ref Guide: typo "more then"...instead of "more than"

Repository: lucene-solr
Updated Branches:
  refs/heads/master c71ce16bb -> ef245c1f0


Ref Guide: typo "more then"...instead of "more than"


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/ef245c1f
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/ef245c1f
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/ef245c1f

Branch: refs/heads/master
Commit: ef245c1f08750fd71341cbfe845d2214eb4b873c
Parents: c71ce16
Author: Cassandra Targett <ct...@apache.org>
Authored: Mon May 22 12:37:16 2017 -0500
Committer: Cassandra Targett <ct...@apache.org>
Committed: Mon May 22 12:37:52 2017 -0500

----------------------------------------------------------------------
 solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ef245c1f/solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc b/solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc
index 79ab2d1..9b6b594 100644
--- a/solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc
+++ b/solr/solr-ref-guide/src/uploading-data-with-index-handlers.adoc
@@ -69,7 +69,7 @@ The add command supports some optional attributes which may be specified.
 
 If the document schema defines a unique key, then by default an `/update` operation to add a document will overwrite (ie: replace) any document in the index with the same unique key. If no unique key has been defined, indexing performance is somewhat faster, as no check has to be made for an existing documents to replace.
 
-If you have a unique key field, but you feel confident that you can safely bypass the uniqueness check (eg: you build your indexes in batch, and your indexing code guarantees it never adds the same document more then once) you can specify the `overwrite="false"` option when adding your documents.
+If you have a unique key field, but you feel confident that you can safely bypass the uniqueness check (eg: you build your indexes in batch, and your indexing code guarantees it never adds the same document more than once) you can specify the `overwrite="false"` option when adding your documents.
 
 [[UploadingDatawithIndexHandlers-XMLUpdateCommands]]
 === XML Update Commands