Merge pull request #13515 from elastic/docsfix

Fix for mappings->_source example in docs
This commit is contained in:
Nik Everett 2015-09-11 11:02:55 -04:00
commit b205875c43
1 changed files with 5 additions and 4 deletions

View File

@ -15,10 +15,11 @@ within the index. For this reason, it can be disabled as follows:
--------------------------------------------------
PUT tweets
{
"mappings": {},
"tweet": {
"_source": {
"enabled": false
"mappings": {
"tweet": {
"_source": {
"enabled": false
}
}
}
}