From 9c1cc745bce1cb13eeeedf46703ea882991cad46 Mon Sep 17 00:00:00 2001 From: "Robert P. J. Day" Date: Fri, 5 Jun 2026 12:36:49 -0400 Subject: [PATCH] contributor-guide: couple minor typo/grammar fixes - font fix - missing word fix (From yocto-docs rev: c7e020d278ded715fc24034b000fb93f554b606c) Signed-off-by: Robert P. J. Day Signed-off-by: Antonin Godard (cherry picked from commit a9bf37a1166120f8870422aceaf2f3d8cb53788a) Signed-off-by: Antonin Godard Signed-off-by: Paul Barker --- documentation/contributor-guide/recipe-style-guide.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/contributor-guide/recipe-style-guide.rst b/documentation/contributor-guide/recipe-style-guide.rst index 506c780620..07f7a58c18 100644 --- a/documentation/contributor-guide/recipe-style-guide.rst +++ b/documentation/contributor-guide/recipe-style-guide.rst @@ -28,7 +28,7 @@ file name. It is recommended to use released versions of software as these are revisions that upstream are expecting people to use. Recipe versions should always compare and sort correctly so that upgrades work -as expected. With conventional versions such as ``1.4`` upgrading ``to 1.5`` +as expected. With conventional versions such as ``1.4`` upgrading to ``1.5`` this happens naturally, but some versions don't sort. For example, ``1.5 Release Candidate 2`` could be written as ``1.5rc2`` but this sorts after ``1.5``, so upgrades from feeds won't happen correctly. @@ -82,7 +82,7 @@ Recipe formatting Variable Formatting ------------------- -- Variable assignment should a space around each side of the operator, e.g. +- Variable assignment should include a space around each side of the operator, e.g. ``FOO = "bar"``, not ``FOO="bar"``. - Double quotes should be used on the right-hand side of the assignment,