diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2022-12-08 10:25:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-12-18 10:41:21 +0000 |
commit | 01e5d22507e57c66452f14610ee8eb3d66ac9d71 (patch) | |
tree | 7241fa93a3a0d11db32d042e5d70a750132ab0a1 /documentation/dev-manual/debugging.rst | |
parent | 8b812b29c4b13ba028c0d66f73a6599a988486d5 (diff) | |
download | poky-01e5d22507e57c66452f14610ee8eb3d66ac9d71.tar.gz |
manuals: fix double colons
Fixing double colons appearing alone on a line, while
they could be put at the end of the previous line.
Sometimes placing a note after the quoted text
to avoid such a situation. It's more natural too
not to have a note between the introduction text
and the quoted section.
(From yocto-docs rev: fb054622f5119444eb947fe580253f37e0d872c6)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/debugging.rst')
-rw-r--r-- | documentation/dev-manual/debugging.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst index ef296de7ac..f433e8e6a9 100644 --- a/documentation/dev-manual/debugging.rst +++ b/documentation/dev-manual/debugging.rst | |||
@@ -327,8 +327,7 @@ BitBake has determined by doing the following: | |||
327 | In the output of the above command, you will find a line like the | 327 | In the output of the above command, you will find a line like the |
328 | following, which lists all the (inferred) variable dependencies for | 328 | following, which lists all the (inferred) variable dependencies for |
329 | the task. This list also includes indirect dependencies from | 329 | the task. This list also includes indirect dependencies from |
330 | variables depending on other variables, recursively. | 330 | variables depending on other variables, recursively:: |
331 | :: | ||
332 | 331 | ||
333 | Task dependencies: ['PV', 'SRCREV', 'SRC_URI', 'SRC_URI[md5sum]', 'SRC_URI[sha256sum]', 'base_do_fetch'] | 332 | Task dependencies: ['PV', 'SRCREV', 'SRC_URI', 'SRC_URI[md5sum]', 'SRC_URI[sha256sum]', 'base_do_fetch'] |
334 | 333 | ||
@@ -641,8 +640,7 @@ The syntax you use for recipes written in Bash is similar to that of | |||
641 | recipes written in Python described in the previous section. | 640 | recipes written in Python described in the previous section. |
642 | 641 | ||
643 | Following is an example written in Bash. The code logs the progress of | 642 | Following is an example written in Bash. The code logs the progress of |
644 | the ``do_my_function`` function. | 643 | the ``do_my_function`` function:: |
645 | :: | ||
646 | 644 | ||
647 | do_my_function() { | 645 | do_my_function() { |
648 | bbdebug 2 "Running do_my_function" | 646 | bbdebug 2 "Running do_my_function" |