doc/ref/renderers/index.rst: remove env support

This commit is contained in:
Justin Findlay 2016-02-09 13:12:11 -07:00
parent a21bad82e5
commit 4953f7b0df

View file

@ -146,7 +146,7 @@ Here is a simple YAML renderer example:
.. code-block:: python
import yaml
def render(yaml_data, env='', sls='', **kws):
def render(yaml_data, saltenv='', sls='', **kws):
if not isinstance(yaml_data, basestring):
yaml_data = yaml_data.read()
data = yaml.load(yaml_data)