diff mbox series

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

Message ID 20260326-metadata-code-blk-v1-2-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 code-blocks should be indented by three whitespaces
compared to the parent block and this only had two, so let's add the
missing whitespace. This is cosmetic in the sources only, it doesn't
change the output.

Fixes: 3b9d7bea915d ("parse/ast: add support for 'built-in' fragments")
Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
 doc/bitbake-user-manual/bitbake-user-manual-metadata.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 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 56604e0dd..4909b0d75 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
@@ -1054,11 +1054,11 @@  The variable containing a built-in fragment definitions could look like this::
 and then if 'someprefix/somevalue' is added to the variable that holds the list
 of enabled fragments::
 
-  OE_FRAGMENTS = "... someprefix/somevalue"
+   OE_FRAGMENTS = "... someprefix/somevalue"
 
 bitbake will treat that as direct value assignment in its configuration::
 
-  SOMEVARIABLE = "somevalue"
+   SOMEVARIABLE = "somevalue"
 
 Locating Include Files
 ----------------------