diff mbox series

[3/3] doc: bitbake-user-manual-metadata: fix indentation consistency

Message ID 20260326-metadata-code-blk-v1-3-051530f9a051@cherry.de
State New
Headers show
Series doc: bitbake-user-manual-metadata: fix code-block and indentation | expand

Commit Message

Quentin Schulz March 26, 2026, 7:23 p.m. UTC
From: Quentin Schulz <quentin.schulz@cherry.de>

We've decided bullet lists should be started by a dash followed by two
whitespaces and the other lines in the bullet list should be indented
at that level, that is with three whitespaces compared to the parent
block. This only has two while the rest of the file has three, so let's
add the missing whitespace. This is cosmetic in the sources only, it
doesn't change the output.

Fixes: 6bc65e6402a7 ("documentation: bitbake: add file-checksums to varflags section")
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
 .../bitbake-user-manual-metadata.rst               | 26 +++++++++++-----------
 1 file changed, 13 insertions(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
index 4909b0d75..40cae6b05 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
@@ -1771,22 +1771,22 @@  functionality of the task:
    directory listed is used as the current working directory for the
    task.
 
-- ``[file-checksums]``: Controls the file dependencies for a task. The
-  baseline file list is the set of files associated with
-  :term:`SRC_URI`. May be used to set additional dependencies on
-  files not associated with :term:`SRC_URI`.
+-  ``[file-checksums]``: Controls the file dependencies for a task. The
+   baseline file list is the set of files associated with
+   :term:`SRC_URI`. May be used to set additional dependencies on
+   files not associated with :term:`SRC_URI`.
 
-  The value set to the list is a file-boolean pair where the first
-  value is the file name and the second is whether or not it
-  physically exists on the filesystem. ::
+   The value set to the list is a file-boolean pair where the first
+   value is the file name and the second is whether or not it
+   physically exists on the filesystem. ::
 
-    do_configure[file-checksums] += "${MY_DIRPATH}/my-file.txt:True"
+      do_configure[file-checksums] += "${MY_DIRPATH}/my-file.txt:True"
 
-  It is important to record any paths which the task looked at and
-  which didn't exist. This means that if these do exist at a later
-  time, the task can be rerun with the new additional files. The
-  "exists" True or False value after the path allows this to be
-  handled.
+   It is important to record any paths which the task looked at and
+   which didn't exist. This means that if these do exist at a later
+   time, the task can be rerun with the new additional files. The
+   "exists" True or False value after the path allows this to be
+   handled.
 
 -  ``[lockfiles]``: Specifies one or more lockfiles to lock while the
    task executes. Only one task may hold a lockfile, and any task that