Browse Source

Merge pull request #13748 from bcoughlin/patch-1

Update put-mapping.asciidoc
Clinton Gormley 10 years ago
parent
commit
e97b731c46
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/indices/put-mapping.asciidoc

+ 1 - 1
docs/reference/indices/put-mapping.asciidoc

@@ -189,7 +189,7 @@ PUT my_index/_mapping/type_one?update_all_types <3>
 -----------------------------------
 // AUTOSENSE
 <1> Create an index with two types, both of which contain a `text` field which have the same mapping.
-<2> Tring to update the `search_analyzer` just for `type_one` throws an exception like `"Merge failed with failures..."`.
+<2> Trying to update the `search_analyzer` just for `type_one` throws an exception like `"Merge failed with failures..."`.
 <3> Adding the `update_all_types` parameter updates the `text` field in `type_one` and `type_two`.