summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Justino da Silva <alan.justino@yahoo.com.br>2016-08-18 19:45:59 -0300
committerMatt Davis <nitzmahone@users.noreply.github.com>2016-08-18 15:45:59 -0700
commitc5b5a20031871e2a40fb4cbbc9fb5b04f497c400 (patch)
treea8ead20e685fad90f027c79e21a0948bfbc407a6
parent4fbd17d94965abd1aa1618eb64085ce27352421f (diff)
downloadansible-c5b5a20031871e2a40fb4cbbc9fb5b04f497c400.tar.gz
[DOC FIX] Time Limited Background Operations topic styles (#17129)
The styles are leaking, by not closing the "coding" part on the right place
-rw-r--r--docsite/rst/intro_adhoc.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docsite/rst/intro_adhoc.rst b/docsite/rst/intro_adhoc.rst
index a42a8cd274..6bb3f34daf 100644
--- a/docsite/rst/intro_adhoc.rst
+++ b/docsite/rst/intro_adhoc.rst
@@ -224,9 +224,9 @@ Time Limited Background Operations
``````````````````````````````````
Long running operations can be run in the background, and it is possible to
-check their status later. For example, to execute ``long_running_operation`
+check their status later. For example, to execute ``long_running_operation``
asynchronously in the background, with a timeout of 3600 seconds (``-B``),
-and without polling (-P)::
+and without polling (``-P``)::
$ ansible all -B 3600 -P 0 -a "/usr/bin/long_running_operation --do-stuff"