diff mbox series

[1/3] doc: bitbake-user-manual-metadata: fix syntax for code-block in addfragments

Message ID 20260326-metadata-code-blk-v1-1-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>

OE_FRAGMENTS was meant as a code-block and thus needs two colons, a
newline and an increased indent for it to work, however we were missing
the second colon.

Let's fix that oversight.

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
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 bf517f030..56604e0dd 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-metadata.rst
@@ -1052,7 +1052,7 @@  The variable containing a built-in fragment definitions could look like this::
    OE_FRAGMENTS_BUILTIN = "someprefix:SOMEVARIABLE anotherprefix:ANOTHERVARIABLE"
 
 and then if 'someprefix/somevalue' is added to the variable that holds the list
-of enabled fragments:
+of enabled fragments::
 
   OE_FRAGMENTS = "... someprefix/somevalue"