summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWesley Merkel <ooesili@gmail.com>2017-07-05 04:13:46 -0500
committerChristoph Büscher <christoph@elastic.co>2017-07-05 11:16:17 +0200
commit7994703903cbdd5ffbfc969694a5426343e32d31 (patch)
tree299d3a9e7acdf9c584e70244b57144f5b6d18c55
parent3185eaece86365992e3e3ea3221b2400c22950c7 (diff)
[Docs] Fix some errors in the index aliases docs (#25449)
-rw-r--r--docs/reference/indices/aliases.asciidoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/indices/aliases.asciidoc b/docs/reference/indices/aliases.asciidoc
index 62a5e10ef0..3f839465e8 100644
--- a/docs/reference/indices/aliases.asciidoc
+++ b/docs/reference/indices/aliases.asciidoc
@@ -3,10 +3,10 @@
APIs in Elasticsearch accept an index name when working against a
specific index, and several indices when applicable. The index aliases
-API allow to alias an index with a name, with all APIs automatically
+API allows aliasing an index with a name, with all APIs automatically
converting the alias name to the actual index name. An alias can also be
mapped to more than one index, and when specifying it, the alias will
-automatically expand to the aliases indices. An alias can also be
+automatically expand to the aliased indices. An alias can also be
associated with a filter that will automatically be applied when
searching, and routing values. An alias cannot have the same name as an index.
@@ -55,7 +55,7 @@ POST /_aliases
// CONSOLE
// TEST[continued]
-Associating an alias with more than one index are simply several `add`
+Associating an alias with more than one index is simply several `add`
actions:
[source,js]