From 2b6af60a806a26d2389742341024bd2be746f83d Mon Sep 17 00:00:00 2001 From: Erik Johnson Date: Fri, 11 Oct 2013 14:36:17 -0500 Subject: [PATCH] Docstring fixes Corrected wrong variable name and made grammar corrections --- salt/states/gem.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/salt/states/gem.py b/salt/states/gem.py index 1f7c2b7797..2b2bee2dbd 100644 --- a/salt/states/gem.py +++ b/salt/states/gem.py @@ -43,12 +43,12 @@ def installed(name, # pylint: disable=C0103 For RVM installations: the ruby version and gemset to target. runas: None - The user to run gem as. + The user under which to run the ``gem`` command .. deprecated:: 0.17.0 - name: None - The user to run gem as + user: None + The user under which to run the ``gem`` command .. versionadded:: 0.17.0 @@ -126,13 +126,14 @@ def removed(name, ruby=None, runas=None, user=None): ruby: None For RVM installations: the ruby version and gemset to target. + runas: None - The user to run gem as. + The user under which to run the ``gem`` command .. deprecated:: 0.17.0 user: None - The user to run gem as + The user under which to run the ``gem`` command .. versionadded:: 0.17.0 '''