summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2025-05-23 21:49:02 -0400
committerSteve Sakoman <steve@sakoman.com>2025-06-02 10:26:30 -0700
commite27ee8c2680d85eb8fbb016fa38714e1d2bc8691 (patch)
treefad790dbad7a63489241e0dd49225a005b8ebdf4
parent89da6e7a4a75536697fa9b5a7b3c9682fc802325 (diff)
downloadpoky-e27ee8c2680d85eb8fbb016fa38714e1d2bc8691.tar.gz
sphinx-lint: unbalanced inline literal markup
Fix as many instances of unbalanced-inline-literals-delimiters as reported by 'make sphinx-lint' as possible. Sphinx and/or its linter seem to get tripped up randomly when references contain links to a heading which contain literals enclosed in double-back-tics; especially in the cases where a heading either contains multiple literals or when the literal is not at the end of the heading. Not all of them can be "fixed" to pass both building and linting. (From yocto-docs rev: 73f4a3e3efce8c4e43939e5053f128faae5b41b1) Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit 3460177c46d360b0f2f852cdab23f21bd4ec6d5a) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--documentation/brief-yoctoprojectqs/index.rst2
-rw-r--r--documentation/bsp-guide/bsp.rst4
-rw-r--r--documentation/dev-manual/debugging.rst2
-rw-r--r--documentation/dev-manual/new-recipe.rst2
-rw-r--r--documentation/dev-manual/start.rst2
-rw-r--r--documentation/dev-manual/upgrading-recipes.rst2
-rw-r--r--documentation/kernel-dev/common.rst14
-rw-r--r--documentation/kernel-dev/intro.rst2
-rw-r--r--documentation/migration-guides/release-notes-4.3.rst2
-rw-r--r--documentation/overview-manual/concepts.rst2
-rw-r--r--documentation/ref-manual/devtool-reference.rst2
-rw-r--r--documentation/ref-manual/structure.rst2
-rw-r--r--documentation/ref-manual/tasks.rst4
-rw-r--r--documentation/ref-manual/terms.rst2
-rw-r--r--documentation/ref-manual/variables.rst8
-rw-r--r--documentation/toaster-manual/reference.rst6
16 files changed, 29 insertions, 29 deletions
diff --git a/documentation/brief-yoctoprojectqs/index.rst b/documentation/brief-yoctoprojectqs/index.rst
index 2f6e4cf02e..070f5e2cf3 100644
--- a/documentation/brief-yoctoprojectqs/index.rst
+++ b/documentation/brief-yoctoprojectqs/index.rst
@@ -182,7 +182,7 @@ an entire Linux distribution, including the toolchain, from source.
182 page of the Yocto Project Wiki. 182 page of the Yocto Project Wiki.
183 183
184#. **Initialize the Build Environment:** From within the ``poky`` 184#. **Initialize the Build Environment:** From within the ``poky``
185 directory, run the :ref:`ref-manual/structure:\`\`oe-init-build-env\`\`` 185 directory, run the :ref:`ref-manual/structure:``oe-init-build-env```
186 environment 186 environment
187 setup script to define Yocto Project's build environment on your 187 setup script to define Yocto Project's build environment on your
188 build host. 188 build host.
diff --git a/documentation/bsp-guide/bsp.rst b/documentation/bsp-guide/bsp.rst
index 3e484aa473..35972f1726 100644
--- a/documentation/bsp-guide/bsp.rst
+++ b/documentation/bsp-guide/bsp.rst
@@ -81,7 +81,7 @@ directory of that Layer. This directory is what you add to the
81``conf/bblayers.conf`` file found in your 81``conf/bblayers.conf`` file found in your
82:term:`Build Directory`, which is 82:term:`Build Directory`, which is
83established after you run the OpenEmbedded build environment setup 83established after you run the OpenEmbedded build environment setup
84script (i.e. :ref:`ref-manual/structure:\`\`oe-init-build-env\`\``). 84script (i.e. :ref:`ref-manual/structure:``oe-init-build-env```).
85Adding the root directory allows the :term:`OpenEmbedded Build System` 85Adding the root directory allows the :term:`OpenEmbedded Build System`
86to recognize the BSP 86to recognize the BSP
87layer and from it build an image. Here is an example:: 87layer and from it build an image. Here is an example::
@@ -229,7 +229,7 @@ section.
229 229
230#. *Initialize the Build Environment:* While in the root directory of 230#. *Initialize the Build Environment:* While in the root directory of
231 the Source Directory (i.e. ``poky``), run the 231 the Source Directory (i.e. ``poky``), run the
232 :ref:`ref-manual/structure:\`\`oe-init-build-env\`\`` environment 232 :ref:`ref-manual/structure:``oe-init-build-env``` environment
233 setup script to define the OpenEmbedded build environment on your 233 setup script to define the OpenEmbedded build environment on your
234 build host. :: 234 build host. ::
235 235
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst
index 92458a0c37..8552b26aea 100644
--- a/documentation/dev-manual/debugging.rst
+++ b/documentation/dev-manual/debugging.rst
@@ -36,7 +36,7 @@ section:
36 use the BitBake ``-e`` option to examine variable values after a 36 use the BitBake ``-e`` option to examine variable values after a
37 recipe has been parsed. 37 recipe has been parsed.
38 38
39- ":ref:`dev-manual/debugging:viewing package information with \`\`oe-pkgdata-util\`\``" 39- ":ref:`dev-manual/debugging:viewing package information with ``oe-pkgdata-util```"
40 describes how to use the ``oe-pkgdata-util`` utility to query 40 describes how to use the ``oe-pkgdata-util`` utility to query
41 :term:`PKGDATA_DIR` and 41 :term:`PKGDATA_DIR` and
42 display package-related information for built packages. 42 display package-related information for built packages.
diff --git a/documentation/dev-manual/new-recipe.rst b/documentation/dev-manual/new-recipe.rst
index 4a65d70243..9792bd4c1f 100644
--- a/documentation/dev-manual/new-recipe.rst
+++ b/documentation/dev-manual/new-recipe.rst
@@ -56,7 +56,7 @@ necessary when adding a recipe to build a new piece of software to be
56included in a build. 56included in a build.
57 57
58You can find a complete description of the ``devtool add`` command in 58You can find a complete description of the ``devtool add`` command in
59the ":ref:`dev-manual/devtool:a closer look at \`\`devtool add\`\``" section 59the ":ref:`dev-manual/devtool:a closer look at ``devtool add```" section
60in the Yocto Project Application Development and the Extensible Software 60in the Yocto Project Application Development and the Extensible Software
61Development Kit (eSDK) manual. 61Development Kit (eSDK) manual.
62 62
diff --git a/documentation/dev-manual/start.rst b/documentation/dev-manual/start.rst
index 21d3dce58c..798bca76ef 100644
--- a/documentation/dev-manual/start.rst
+++ b/documentation/dev-manual/start.rst
@@ -858,7 +858,7 @@ Initializing the Build Environment
858================================== 858==================================
859 859
860Before you can use Yocto you need to setup the build environment. 860Before you can use Yocto you need to setup the build environment.
861From within the ``poky`` directory, source the :ref:`ref-manual/structure:\`\`oe-init-build-env\`\`` environment 861From within the ``poky`` directory, source the :ref:`ref-manual/structure:``oe-init-build-env``` environment
862setup script to define Yocto Project's build environment on your build host:: 862setup script to define Yocto Project's build environment on your build host::
863 863
864 $ source oe-init-build-env 864 $ source oe-init-build-env
diff --git a/documentation/dev-manual/upgrading-recipes.rst b/documentation/dev-manual/upgrading-recipes.rst
index 35901a0ea8..2e65678679 100644
--- a/documentation/dev-manual/upgrading-recipes.rst
+++ b/documentation/dev-manual/upgrading-recipes.rst
@@ -333,7 +333,7 @@ Manually Upgrading a Recipe
333 333
334If for some reason you choose not to upgrade recipes using 334If for some reason you choose not to upgrade recipes using
335:ref:`dev-manual/upgrading-recipes:Using the Auto Upgrade Helper (AUH)` or 335:ref:`dev-manual/upgrading-recipes:Using the Auto Upgrade Helper (AUH)` or
336by :ref:`dev-manual/upgrading-recipes:Using \`\`devtool upgrade\`\``, 336by :ref:`dev-manual/upgrading-recipes:Using ``devtool upgrade```,
337you can manually edit the recipe files to upgrade the versions. 337you can manually edit the recipe files to upgrade the versions.
338 338
339.. note:: 339.. note::
diff --git a/documentation/kernel-dev/common.rst b/documentation/kernel-dev/common.rst
index 28ef3b22c3..654c4e0a01 100644
--- a/documentation/kernel-dev/common.rst
+++ b/documentation/kernel-dev/common.rst
@@ -672,7 +672,7 @@ The steps in this procedure show you how you can patch the kernel using
672 672
673 Before attempting this procedure, be sure you have performed the 673 Before attempting this procedure, be sure you have performed the
674 steps to get ready for updating the kernel as described in the 674 steps to get ready for updating the kernel as described in the
675 ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" 675 ":ref:`kernel-dev/common:getting ready to develop using ``devtool```"
676 section. 676 section.
677 677
678Patching the kernel involves changing or adding configurations to an 678Patching the kernel involves changing or adding configurations to an
@@ -685,7 +685,7 @@ output at boot time through ``printk`` statements in the kernel's
685``calibrate.c`` source code file. Applying the patch and booting the 685``calibrate.c`` source code file. Applying the patch and booting the
686modified image causes the added messages to appear on the emulator's 686modified image causes the added messages to appear on the emulator's
687console. The example is a continuation of the setup procedure found in 687console. The example is a continuation of the setup procedure found in
688the ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" Section. 688the ":ref:`kernel-dev/common:getting ready to develop using ``devtool```" Section.
689 689
690#. *Check Out the Kernel Source Files:* First you must use ``devtool`` 690#. *Check Out the Kernel Source Files:* First you must use ``devtool``
691 to checkout the kernel source code in its workspace. 691 to checkout the kernel source code in its workspace.
@@ -693,7 +693,7 @@ the ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" Se
693 .. note:: 693 .. note::
694 694
695 See this step in the 695 See this step in the
696 ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" 696 ":ref:`kernel-dev/common:getting ready to develop using ``devtool```"
697 section for more information. 697 section for more information.
698 698
699 Use the following ``devtool`` command to check out the code:: 699 Use the following ``devtool`` command to check out the code::
@@ -804,7 +804,7 @@ the ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" Se
804 .. note:: 804 .. note::
805 805
806 See Step 3 of the 806 See Step 3 of the
807 ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" 807 ":ref:`kernel-dev/common:getting ready to develop using ``devtool```"
808 section for information on setting up this layer. 808 section for information on setting up this layer.
809 809
810 Once the command 810 Once the command
@@ -1190,7 +1190,7 @@ appear in the ``.config`` file, which is in the :term:`Build Directory`.
1190 1190
1191 For more information about where the ``.config`` file is located, see the 1191 For more information about where the ``.config`` file is located, see the
1192 example in the 1192 example in the
1193 ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" 1193 ":ref:`kernel-dev/common:using ``menuconfig```"
1194 section. 1194 section.
1195 1195
1196It is simple to create a configuration fragment. One method is to use 1196It is simple to create a configuration fragment. One method is to use
@@ -1286,7 +1286,7 @@ when you override a policy configuration in a hardware configuration
1286fragment. 1286fragment.
1287 1287
1288In order to run this task, you must have an existing ``.config`` file. 1288In order to run this task, you must have an existing ``.config`` file.
1289See the ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" section for 1289See the ":ref:`kernel-dev/common:using ``menuconfig```" section for
1290information on how to create a configuration file. 1290information on how to create a configuration file.
1291 1291
1292Here is sample output from the :ref:`ref-tasks-kernel_configcheck` task: 1292Here is sample output from the :ref:`ref-tasks-kernel_configcheck` task:
@@ -1359,7 +1359,7 @@ and
1359tasks until they produce no warnings. 1359tasks until they produce no warnings.
1360 1360
1361For more information on how to use the ``menuconfig`` tool, see the 1361For more information on how to use the ``menuconfig`` tool, see the
1362:ref:`kernel-dev/common:using \`\`menuconfig\`\`` section. 1362:ref:`kernel-dev/common:using ``menuconfig``` section.
1363 1363
1364Fine-Tuning the Kernel Configuration File 1364Fine-Tuning the Kernel Configuration File
1365----------------------------------------- 1365-----------------------------------------
diff --git a/documentation/kernel-dev/intro.rst b/documentation/kernel-dev/intro.rst
index a663733a1d..7df342f8d5 100644
--- a/documentation/kernel-dev/intro.rst
+++ b/documentation/kernel-dev/intro.rst
@@ -122,7 +122,7 @@ general information and references for further information.
122 Using ``devtool`` requires that you have a clean build 122 Using ``devtool`` requires that you have a clean build
123 of the image. For 123 of the image. For
124 more information, see the 124 more information, see the
125 ":ref:`kernel-dev/common:getting ready to develop using \`\`devtool\`\``" 125 ":ref:`kernel-dev/common:getting ready to develop using ``devtool```"
126 section. 126 section.
127 127
128 Using traditional kernel development requires that you have the 128 Using traditional kernel development requires that you have the
diff --git a/documentation/migration-guides/release-notes-4.3.rst b/documentation/migration-guides/release-notes-4.3.rst
index d1ab70447b..0103ac985e 100644
--- a/documentation/migration-guides/release-notes-4.3.rst
+++ b/documentation/migration-guides/release-notes-4.3.rst
@@ -295,7 +295,7 @@ New Features / Enhancements in 4.3
295 - Generation of :term:`SPDX` manifests is now enabled by default. 295 - Generation of :term:`SPDX` manifests is now enabled by default.
296 296
297 - Git based recipes in OE-Core which used the ``git`` protocol have been 297 - Git based recipes in OE-Core which used the ``git`` protocol have been
298 changed to use `https`` where possible, as it is typically faster and 298 changed to use ``https`` where possible, as it is typically faster and
299 more reliable. 299 more reliable.
300 300
301 - The ``os-release`` recipe added a ``CPE_NAME`` to the fields provided, with the 301 - The ``os-release`` recipe added a ``CPE_NAME`` to the fields provided, with the
diff --git a/documentation/overview-manual/concepts.rst b/documentation/overview-manual/concepts.rst
index 416c28f0d9..85dea9fe05 100644
--- a/documentation/overview-manual/concepts.rst
+++ b/documentation/overview-manual/concepts.rst
@@ -956,7 +956,7 @@ package.
956 956
957 For more information on the ``oe-pkgdata-util`` utility, see the section 957 For more information on the ``oe-pkgdata-util`` utility, see the section
958 :ref:`dev-manual/debugging:Viewing Package Information with 958 :ref:`dev-manual/debugging:Viewing Package Information with
959 \`\`oe-pkgdata-util\`\`` of the Yocto Project Development Tasks Manual. 959 ``oe-pkgdata-util``` of the Yocto Project Development Tasks Manual.
960 960
961To add a custom package variant of the ``${PN}`` recipe named 961To add a custom package variant of the ``${PN}`` recipe named
962``${PN}-extra`` (name is arbitrary), one can add it to the 962``${PN}-extra`` (name is arbitrary), one can add it to the
diff --git a/documentation/ref-manual/devtool-reference.rst b/documentation/ref-manual/devtool-reference.rst
index e173720e1a..5ac567591c 100644
--- a/documentation/ref-manual/devtool-reference.rst
+++ b/documentation/ref-manual/devtool-reference.rst
@@ -435,7 +435,7 @@ You can read more on the ``devtool upgrade`` workflow in the
435":ref:`dev-manual/devtool:use \`\`devtool upgrade\`\` to create a version of the recipe that supports a newer version of the software`" 435":ref:`dev-manual/devtool:use \`\`devtool upgrade\`\` to create a version of the recipe that supports a newer version of the software`"
436section in the Yocto Project Application Development and the Extensible 436section in the Yocto Project Application Development and the Extensible
437Software Development Kit (eSDK) manual. You can also see an example of 437Software Development Kit (eSDK) manual. You can also see an example of
438how to use ``devtool upgrade`` in the ":ref:`dev-manual/upgrading-recipes:using \`\`devtool upgrade\`\``" 438how to use ``devtool upgrade`` in the ":ref:`dev-manual/upgrading-recipes:using ``devtool upgrade```"
439section in the Yocto Project Development Tasks Manual. 439section in the Yocto Project Development Tasks Manual.
440 440
441.. _devtool-resetting-a-recipe: 441.. _devtool-resetting-a-recipe:
diff --git a/documentation/ref-manual/structure.rst b/documentation/ref-manual/structure.rst
index 616c3c4c9b..2190f5b90e 100644
--- a/documentation/ref-manual/structure.rst
+++ b/documentation/ref-manual/structure.rst
@@ -515,7 +515,7 @@ generated during the :ref:`ref-tasks-packagedata` task. The files stored in this
515directory contain information about each output package produced by the 515directory contain information about each output package produced by the
516OpenEmbedded build system, and are used in different ways by the build system 516OpenEmbedded build system, and are used in different ways by the build system
517such as ":ref:`dev-manual/debugging:viewing package information with 517such as ":ref:`dev-manual/debugging:viewing package information with
518\`\`oe-pkgdata-util\`\``". 518``oe-pkgdata-util```".
519 519
520.. _structure-build-tmp-sstate-control: 520.. _structure-build-tmp-sstate-control:
521 521
diff --git a/documentation/ref-manual/tasks.rst b/documentation/ref-manual/tasks.rst
index d2e1f4ce14..d85d1151f0 100644
--- a/documentation/ref-manual/tasks.rst
+++ b/documentation/ref-manual/tasks.rst
@@ -726,7 +726,7 @@ tool, which you then use to modify the kernel configuration.
726 $ bitbake linux-yocto -c menuconfig 726 $ bitbake linux-yocto -c menuconfig
727 727
728 728
729See the ":ref:`kernel-dev/common:using \`\`menuconfig\`\``" 729See the ":ref:`kernel-dev/common:using ``menuconfig```"
730section in the Yocto Project Linux Kernel Development Manual for more 730section in the Yocto Project Linux Kernel Development Manual for more
731information on this configuration tool. 731information on this configuration tool.
732 732
@@ -750,7 +750,7 @@ which can then be applied by subsequent tasks such as
750 750
751Runs ``make menuconfig`` for the kernel. For information on 751Runs ``make menuconfig`` for the kernel. For information on
752``menuconfig``, see the 752``menuconfig``, see the
753":ref:`kernel-dev/common:using \`\`menuconfig\`\``" 753":ref:`kernel-dev/common:using ``menuconfig```"
754section in the Yocto Project Linux Kernel Development Manual. 754section in the Yocto Project Linux Kernel Development Manual.
755 755
756.. _ref-tasks-savedefconfig: 756.. _ref-tasks-savedefconfig:
diff --git a/documentation/ref-manual/terms.rst b/documentation/ref-manual/terms.rst
index 9d765c89c8..9f61061415 100644
--- a/documentation/ref-manual/terms.rst
+++ b/documentation/ref-manual/terms.rst
@@ -63,7 +63,7 @@ universal, the list includes them just in case:
63 This term refers to the area used by the OpenEmbedded build system for 63 This term refers to the area used by the OpenEmbedded build system for
64 builds. The area is created when you ``source`` the setup environment 64 builds. The area is created when you ``source`` the setup environment
65 script that is found in the Source Directory 65 script that is found in the Source Directory
66 (i.e. :ref:`ref-manual/structure:\`\`oe-init-build-env\`\``). The 66 (i.e. :ref:`ref-manual/structure:``oe-init-build-env```). The
67 :term:`TOPDIR` variable points to the :term:`Build Directory`. 67 :term:`TOPDIR` variable points to the :term:`Build Directory`.
68 68
69 You have a lot of flexibility when creating the :term:`Build Directory`. 69 You have a lot of flexibility when creating the :term:`Build Directory`.
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 00ab881011..6b4acd2244 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -2243,7 +2243,7 @@ system and gives an overview of their function and contents.
2243 resides within the :term:`Build Directory` as ``${TMPDIR}/deploy``. 2243 resides within the :term:`Build Directory` as ``${TMPDIR}/deploy``.
2244 2244
2245 For more information on the structure of the Build Directory, see 2245 For more information on the structure of the Build Directory, see
2246 ":ref:`ref-manual/structure:the build directory --- \`\`build/\`\``" section. 2246 ":ref:`ref-manual/structure:the build directory --- ``build/```" section.
2247 For more detail on the contents of the ``deploy`` directory, see the 2247 For more detail on the contents of the ``deploy`` directory, see the
2248 ":ref:`overview-manual/concepts:images`", 2248 ":ref:`overview-manual/concepts:images`",
2249 ":ref:`overview-manual/concepts:package feeds`", and 2249 ":ref:`overview-manual/concepts:package feeds`", and
@@ -2285,7 +2285,7 @@ system and gives an overview of their function and contents.
2285 contents of :term:`IMGDEPLOYDIR` by the :ref:`ref-classes-image` class. 2285 contents of :term:`IMGDEPLOYDIR` by the :ref:`ref-classes-image` class.
2286 2286
2287 For more information on the structure of the :term:`Build Directory`, see 2287 For more information on the structure of the :term:`Build Directory`, see
2288 ":ref:`ref-manual/structure:the build directory --- \`\`build/\`\``" section. 2288 ":ref:`ref-manual/structure:the build directory --- ``build/```" section.
2289 For more detail on the contents of the ``deploy`` directory, see the 2289 For more detail on the contents of the ``deploy`` directory, see the
2290 ":ref:`overview-manual/concepts:images`" and 2290 ":ref:`overview-manual/concepts:images`" and
2291 ":ref:`overview-manual/concepts:application development sdk`" sections both in 2291 ":ref:`overview-manual/concepts:application development sdk`" sections both in
@@ -7084,7 +7084,7 @@ system and gives an overview of their function and contents.
7084 For examples of how this data is used, see the 7084 For examples of how this data is used, see the
7085 ":ref:`overview-manual/concepts:automatically added runtime dependencies`" 7085 ":ref:`overview-manual/concepts:automatically added runtime dependencies`"
7086 section in the Yocto Project Overview and Concepts Manual and the 7086 section in the Yocto Project Overview and Concepts Manual and the
7087 ":ref:`dev-manual/debugging:viewing package information with \`\`oe-pkgdata-util\`\``" 7087 ":ref:`dev-manual/debugging:viewing package information with ``oe-pkgdata-util```"
7088 section in the Yocto Project Development Tasks Manual. For more 7088 section in the Yocto Project Development Tasks Manual. For more
7089 information on the shared, global-state directory, see 7089 information on the shared, global-state directory, see
7090 :term:`STAGING_DIR_HOST`. 7090 :term:`STAGING_DIR_HOST`.
@@ -7138,7 +7138,7 @@ system and gives an overview of their function and contents.
7138 the package is built, the version information can be retrieved with 7138 the package is built, the version information can be retrieved with
7139 ``oe-pkgdata-util package-info <package name>``. See the 7139 ``oe-pkgdata-util package-info <package name>``. See the
7140 :ref:`dev-manual/debugging:Viewing Package Information with 7140 :ref:`dev-manual/debugging:Viewing Package Information with
7141 \`\`oe-pkgdata-util\`\`` section of the Yocto Project Development Tasks 7141 ``oe-pkgdata-util``` section of the Yocto Project Development Tasks
7142 Manual for more information on ``oe-pkgdata-util``. 7142 Manual for more information on ``oe-pkgdata-util``.
7143 7143
7144 7144
diff --git a/documentation/toaster-manual/reference.rst b/documentation/toaster-manual/reference.rst
index 755b895cee..3050b5d0f5 100644
--- a/documentation/toaster-manual/reference.rst
+++ b/documentation/toaster-manual/reference.rst
@@ -546,7 +546,7 @@ database.
546 546
547You need to run the ``buildslist`` command first to identify existing 547You need to run the ``buildslist`` command first to identify existing
548builds in the database before using the 548builds in the database before using the
549:ref:`toaster-manual/reference:\`\`builddelete\`\`` command. Here is an 549:ref:`toaster-manual/reference:``builddelete``` command. Here is an
550example that assumes default repository and :term:`Build Directory` names: 550example that assumes default repository and :term:`Build Directory` names:
551 551
552.. code-block:: shell 552.. code-block:: shell
@@ -555,7 +555,7 @@ example that assumes default repository and :term:`Build Directory` names:
555 $ python ../bitbake/lib/toaster/manage.py buildslist 555 $ python ../bitbake/lib/toaster/manage.py buildslist
556 556
557If your Toaster database had only one build, the above 557If your Toaster database had only one build, the above
558:ref:`toaster-manual/reference:\`\`buildslist\`\`` 558:ref:`toaster-manual/reference:``buildslist```
559command would return something like the following:: 559command would return something like the following::
560 560
561 1: qemux86 poky core-image-minimal 561 1: qemux86 poky core-image-minimal
@@ -576,7 +576,7 @@ the database.
576 576
577Prior to running the ``builddelete`` command, you need to get the ID 577Prior to running the ``builddelete`` command, you need to get the ID
578associated with builds by using the 578associated with builds by using the
579:ref:`toaster-manual/reference:\`\`buildslist\`\`` command. 579:ref:`toaster-manual/reference:``buildslist``` command.
580 580
581``perf`` 581``perf``
582-------- 582--------