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:39:05 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_6 070575ad2 -> 401e43d18


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/401e43d1
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/401e43d1
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/401e43d1

Branch: refs/heads/branch_6_6
Commit: 401e43d18d34c754411b7b02dcbb7f14461513ce
Parents: 070575a
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:38:57 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/401e43d1/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