Browse Source

[DOCS] Correct typo in split index API docs (#48894)

bellengao 6 years ago
parent
commit
13aef72f1c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/reference/indices/split-index.asciidoc

+ 2 - 2
docs/reference/indices/split-index.asciidoc

@@ -166,7 +166,7 @@ Indices can only be split if they satisfy the following requirements:
 
 
 * The source index must have fewer primary shards than the target index.
 * The source index must have fewer primary shards than the target index.
 
 
-* The number of primary shards in the target index must be a factor of the
+* The number of primary shards in the target index must be a multiple of the
   number of primary shards in the source index.
   number of primary shards in the source index.
 
 
 * The node handling the split process must have sufficient free disk space to
 * The node handling the split process must have sufficient free disk space to
@@ -191,7 +191,7 @@ POST /my_source_index/_split/my_target_index
 --------------------------------------------------
 --------------------------------------------------
 // TEST[s/^/PUT my_source_index\n{"settings": {"index.blocks.write": true, "index.number_of_shards": "1"}}\n/]
 // TEST[s/^/PUT my_source_index\n{"settings": {"index.blocks.write": true, "index.number_of_shards": "1"}}\n/]
 
 
-<1> The number of shards in the target index. This must be a factor of the
+<1> The number of shards in the target index. This must be a multiple of the
     number of shards in the source index.
     number of shards in the source index.