diff mbox series

contributor-guide: couple minor typo/grammar fixes

Message ID 306cd0d9-8b5e-5f72-b21f-4b1051491c2b@crashcourse.ca
State New
Headers show
Series contributor-guide: couple minor typo/grammar fixes | expand

Commit Message

Robert P. J. Day June 5, 2026, 4:36 p.m. UTC
- font fix
  - missing word fix

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---
diff mbox series

Patch

diff --git a/documentation/contributor-guide/recipe-style-guide.rst b/documentation/contributor-guide/recipe-style-guide.rst
index 704db32ea..e5b77393f 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,