fix typos in commands modules (#62197)

This commit is contained in:
Andrey Klychkov 2019-09-12 17:54:45 +03:00 committed by Alicia Cozine
parent 742eebc92c
commit 6691527799
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ def main():
# This should catch all insufficient versions of pexpect
# We deem them insufficient for their lack of ability to specify
# to not echo responses via the run/runu functions, which would
# potentially leak sensentive information
# potentially leak sensitive information
module.fail_json(msg='Insufficient version of pexpect installed '
'(%s), this module requires pexpect>=3.3. '
'Error was %s' % (pexpect.__version__, to_native(e)))

View file

@ -93,7 +93,7 @@ options:
asynchronous:
description:
- Will run the command as a detached process and the module returns
immediately after starting the processs while the process continues to
immediately after starting the process while the process continues to
run in the background.
- The I(stdout) and I(stderr) return values will be null when this is set
to C(yes).