summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/reference_appendices
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/rst/reference_appendices')
-rw-r--r--docs/docsite/rst/reference_appendices/faq.rst4
-rw-r--r--docs/docsite/rst/reference_appendices/general_precedence.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/docsite/rst/reference_appendices/faq.rst b/docs/docsite/rst/reference_appendices/faq.rst
index fce890479f..7c3ec2d3ad 100644
--- a/docs/docsite/rst/reference_appendices/faq.rst
+++ b/docs/docsite/rst/reference_appendices/faq.rst
@@ -352,7 +352,7 @@ How do I see a list of all of the ansible\_ variables?
Ansible by default gathers "facts" about the machines under management, and these facts can be accessed in playbooks
and in templates. To see a list of all of the facts that are available about a machine, you can run the ``setup`` module
-as an ad-hoc action:
+as an ad hoc action:
.. code-block:: shell-session
@@ -519,7 +519,7 @@ and distribution and local configuration.
How do I generate encrypted passwords for the user module?
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-Ansible ad-hoc command is the easiest option:
+Ansible ad hoc command is the easiest option:
.. code-block:: shell-session
diff --git a/docs/docsite/rst/reference_appendices/general_precedence.rst b/docs/docsite/rst/reference_appendices/general_precedence.rst
index 90494b6981..3fbc98b2b7 100644
--- a/docs/docsite/rst/reference_appendices/general_precedence.rst
+++ b/docs/docsite/rst/reference_appendices/general_precedence.rst
@@ -47,7 +47,7 @@ When you type something directly at the command line, you may feel that your han
You can override all other settings from all other sources in all other precedence categories at the command line by :ref:`general_precedence_extra_vars`, but that is not a command-line option, it is a way of passing a :ref:`variable<general_precedence_variables>`.
-At the command line, if you pass multiple values for a parameter that accepts only a single value, the last defined value wins. For example, this :ref:`ad-hoc task<intro_adhoc>` will connect as ``carol``, not as ``mike``::
+At the command line, if you pass multiple values for a parameter that accepts only a single value, the last defined value wins. For example, this :ref:`ad hoc task<intro_adhoc>` will connect as ``carol``, not as ``mike``::
ansible -u mike -m ping myhost -u carol