Correct doc_values info in authoring plugins docs

disable_doc_values no longer exists; corrects documentation to the
correct property name.

Change-Id: Id5b9f5a07072ceb364fd289fd4ffb9ee86007dc2
Closes-Bug: #1579986
This commit is contained in:
Steve McLellan 2016-06-13 14:30:42 -05:00
parent 8ceead06ee
commit 33066df7ca
1 changed files with 3 additions and 3 deletions

View File

@ -419,11 +419,11 @@ the default can be overriden:
[resource_plugin:os_neutron_net]
mapping_use_doc_values = false
* For a plugin's entire mapping; in code, override the ``disable_doc_values``
property::
* For a plugin's entire mapping; in code, override the ``mapping_use_doc_values``
property (and thus ignoring any configuration property)::
@property
def disable_doc_values(self):
def mapping_use_doc_values(self):
return False
* For individual fields in a mapping, by setting ``doc_values`` to False::