diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-03-28 17:37:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-31 11:46:03 +0100 |
commit | 325c23cd0f80456111ce886af141501a8a74282c (patch) | |
tree | 31096b4dead9592103a6add952c8f57b372e8285 /documentation/profile-manual | |
parent | ecab5f36555d50ac35eaafd3b56a9a67086be77e (diff) | |
download | poky-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/profile-manual')
-rw-r--r-- | documentation/profile-manual/usage.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/profile-manual/usage.rst b/documentation/profile-manual/usage.rst index 56f1e66674..fb1553d70d 100644 --- a/documentation/profile-manual/usage.rst +++ b/documentation/profile-manual/usage.rst | |||
@@ -171,7 +171,7 @@ understand what's going on in a way that we can act on in a useful way. | |||
171 | 171 | ||
172 | To dive down into a next level of detail, we can use 'perf record'/'perf | 172 | To dive down into a next level of detail, we can use 'perf record'/'perf |
173 | report' which will collect profiling data and present it to use using an | 173 | report' which will collect profiling data and present it to use using an |
174 | interactive text-based UI (or simply as text if we specify --stdio to | 174 | interactive text-based UI (or simply as text if we specify ``--stdio`` to |
175 | 'perf report'). | 175 | 'perf report'). |
176 | 176 | ||
177 | As our first attempt at profiling this workload, we'll simply run 'perf | 177 | As our first attempt at profiling this workload, we'll simply run 'perf |