From a704057ab0c36d72cd00d49daca949ca72f739c4 Mon Sep 17 00:00:00 2001 From: ITaluone <44049228+ITaluone@users.noreply.github.com> Date: Tue, 26 Nov 2024 09:03:22 +0100 Subject: [PATCH] docs(versioning/same-major): fix typo (#32732) --- lib/modules/versioning/same-major/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/versioning/same-major/readme.md b/lib/modules/versioning/same-major/readme.md index 5a95fe4634..6b5285b597 100644 --- a/lib/modules/versioning/same-major/readme.md +++ b/lib/modules/versioning/same-major/readme.md @@ -1,4 +1,4 @@ -The 'Same Major' versioning is designed to handle the case where a version needs to treated as a "greate than or equal to" constraint. +The 'Same Major' versioning is designed to handle the case where a version needs to treated as a "greater than or equal to" constraint. Specifically, the case where the version say, `X.Y.Z` signifies a range of compatibility from greater than or equal to `X.Y.Z` to less than `X+1`. This process uses Semver-Coerced versioning beneath the surface, single versions (e.g., `X.Y.Z`) are converted to a range like `X+1` and then passed to the corresponding semver-coerced method. -- GitLab