Merge pull request #14738 from petmit/patch-1

Update error in documentation for multi-fields
This commit is contained in:
Clinton Gormley 2015-11-17 17:33:09 +01:00
parent d2ffcba890
commit 728cc5137a
1 changed files with 6 additions and 6 deletions

View File

@ -83,12 +83,12 @@ PUT my_index
"my_type": { "my_type": {
"properties": { "properties": {
"text": { <1> "text": { <1>
"type": "string" "type": "string",
}, "fields": {
"fields": { "english": { <2>
"english": { <2> "type": "string",
"type": "string", "analyzer": "english"
"analyzer": "english" }
} }
} }
} }