From 7994703903cbdd5ffbfc969694a5426343e32d31 Mon Sep 17 00:00:00 2001 From: Wesley Merkel Date: Wed, 5 Jul 2017 04:13:46 -0500 Subject: [PATCH] [Docs] Fix some errors in the index aliases docs (#25449) --- docs/reference/indices/aliases.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/indices/aliases.asciidoc b/docs/reference/indices/aliases.asciidoc index 62a5e10ef0e..3f839465e8b 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]