@@ -269,7 +269,7 @@ stabilizes the codebase for final testing, bug fixes, and release-specific
269269tasks without blocking ongoing feature development on main/develop. Those
270270branches will have the following naming schema:
271271
272- ```
272+ ``` text
273273release/MAJOR.MINOR.PATCH
274274```
275275
@@ -287,7 +287,7 @@ release/MAJOR.MINOR.PATCH
287287 develop or main) and merged back into both main (or master) and develop (or
288288 the integration branch) after release.
289289
290- * Typical tasks on the branch: final bugfixes , documentation, version bump,
290+ * Typical tasks on the branch: final bug fixes , documentation, version bump,
291291 packaging, and deployment scripts.
292292
293293* Naming: Use clear names like release/1.4.0 or release-2026-03-30.
@@ -308,11 +308,11 @@ changes in a release using a three-part number: MAJOR.MINOR.PATCH.
308308
309309* Format: MAJOR.MINOR.PATCH (e.g., 2.5.1).
310310
311- * Increment MAJOR when you make incompatible API changes.
311+ * Increment MAJOR for incompatible API changes.
312312
313- * Increment MINOR when you add functionality in a backwards-compatible manner .
313+ * Increment MINOR when you add backwards-compatible features .
314314
315- * Increment PATCH when you make backwards-compatible bug fixes.
315+ * Increment PATCH for backwards-compatible bug fixes.
316316
317317* Pre-release identifiers: append a hyphen and identifiers for unstable
318318 releases (e.g., 1.0.0-alpha.1).
@@ -342,8 +342,8 @@ changes in a release using a three-part number: MAJOR.MINOR.PATCH.
342342| feature/* | new features |
343343| hotfix/* | urgent production fixes |
344344
345- NOTE: the actual proposal covers just release branches, not feature nor hotfix
346- ones .
345+ NOTE: the actual proposal covers release branches only; feature and hotfix
346+ branch naming conventions are not covered here .
347347
348348
349349
0 commit comments