summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2023-10-12 08:14:06 -0400
committerSteve Sakoman <steve@sakoman.com>2023-10-25 04:45:51 -1000
commit720324bd180bc8408d96d80e559169252d87e166 (patch)
treee36880078762cf984c9ae5689cad381ee33f2ae6
parent6a3b428c7c98c52a338cc8b53f10a4543a6a1f67 (diff)
downloadpoky-720324bd180bc8408d96d80e559169252d87e166.tar.gz
dev-manual: new-recipe.rst: add missing parenthesis to "Patching Code" section
Add missing parenthesis, and another example of a compressed patch filename. (From yocto-docs rev: febc0c6b7b5843c70ed01f9b2bda71c02091eae6) Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--documentation/dev-manual/new-recipe.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/dev-manual/new-recipe.rst b/documentation/dev-manual/new-recipe.rst
index 855ef8eb06..a031c59875 100644
--- a/documentation/dev-manual/new-recipe.rst
+++ b/documentation/dev-manual/new-recipe.rst
@@ -409,8 +409,8 @@ Patching Code
409 409
410Sometimes it is necessary to patch code after it has been fetched. Any 410Sometimes it is necessary to patch code after it has been fetched. Any
411files mentioned in :term:`SRC_URI` whose names end in ``.patch`` or 411files mentioned in :term:`SRC_URI` whose names end in ``.patch`` or
412``.diff`` or compressed versions of these suffixes (e.g. ``diff.gz`` are 412``.diff`` or compressed versions of these suffixes (e.g. ``diff.gz``,
413treated as patches. The 413``patch.bz2``, etc.) are treated as patches. The
414:ref:`ref-tasks-patch` task 414:ref:`ref-tasks-patch` task
415automatically applies these patches. 415automatically applies these patches.
416 416