summaryrefslogtreecommitdiffstats
path: root/documentation/ref-manual/tasks.rst
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2022-03-28 17:37:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-31 11:46:03 +0100
commit325c23cd0f80456111ce886af141501a8a74282c (patch)
tree31096b4dead9592103a6add952c8f57b372e8285 /documentation/ref-manual/tasks.rst
parentecab5f36555d50ac35eaafd3b56a9a67086be77e (diff)
downloadpoky-325c23cd0f80456111ce886af141501a8a74282c.tar.gz
manuals: fix quoting of double dashes
Otherwise rendered as "en" dashes by sphinx, for example: git pull –rebase instead of git pull --rebase Readers could confuse them with normal dashes. Exception: replace by \-\- in italic text (*text*) as Sphinx cannot nest italic and quoted text. For consistency, also update quoting in strings in the same code hunks. (From yocto-docs rev: 4e7ce372e37f76148f623a5295a15e08bc2603ff) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual/tasks.rst')
-rw-r--r--documentation/ref-manual/tasks.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst
index b51462b79a..a2b8763e7c 100644
--- a/documentation/ref-manual/tasks.rst
+++ b/documentation/ref-manual/tasks.rst
@@ -187,9 +187,9 @@ that either directly or indirectly depend on the installed files (e.g.
187 187
188 - The ``install`` utility. This utility is the preferred method. 188 - The ``install`` utility. This utility is the preferred method.
189 189
190 - The ``cp`` command with the "--no-preserve=ownership" option. 190 - The ``cp`` command with the ``--no-preserve=ownership`` option.
191 191
192 - The ``tar`` command with the "--no-same-owner" option. See the 192 - The ``tar`` command with the ``--no-same-owner`` option. See the
193 ``bin_package.bbclass`` file in the ``meta/classes`` directory of 193 ``bin_package.bbclass`` file in the ``meta/classes`` directory of
194 the :term:`Source Directory` for an example. 194 the :term:`Source Directory` for an example.
195 195