Fixing more sphinx warnings and errors

This commit is contained in:
Nitin Madhok 2014-08-11 14:08:19 -04:00
parent 7606bfd6cc
commit 07e219b6db
3 changed files with 12 additions and 12 deletions

View file

@ -11,7 +11,7 @@ Security disclosure policy
.. code-block:: text
-----BEGIN PGP PUBLIC KEY BLOCK----
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
mQINBFO15mMBEADa3CfQwk5ED9wAQ8fFDku277CegG3U1hVGdcxqKNvucblwoKCb

View file

@ -42,6 +42,7 @@ def __virtual__():
def change(name, context=None, changes=None, lens=None, **kwargs):
'''
.. versionadded:: 2014.1.6
This state replaces :py:func:`~salt.states.augeas.setvalue`.
Issue changes to Augeas, optionally for a specific context, with a

View file

@ -25,21 +25,20 @@ does.
See (admittedly degenerate and probably not complete) example:
.. code-block:: text
```
classes:
- basepackages
- database
```
classes:
- basepackages
- database
The above essentially is the same as a top.sls containing
The above essentially is the same as a top.sls containing:
```
base:
'*':
- basepackages
- database
.. code-block:: yaml
base:
'*':
- basepackages
- database
'''
# Import python libs