Fixes the cli examples to reference the correct function

This commit is contained in:
Jacob Hammons 2016-10-03 15:52:54 -06:00
parent 804a2a1ab0
commit 71f91b3a50

View file

@ -2021,9 +2021,9 @@ def file_dict(*packages):
.. code-block:: bash
salt '*' pkg.file_list httpd
salt '*' pkg.file_list httpd postfix
salt '*' pkg.file_list
salt '*' pkg.file_dict httpd
salt '*' pkg.file_dict httpd postfix
salt '*' pkg.file_dict
'''
return __salt__['lowpkg.file_dict'](*packages)