0
0
mirror of https://github.com/semver/semver.git synced 2025-08-22 13:58:33 +00:00

Change capitalisation of some words to match usage elsewhere in the text.

This commit is contained in:
vaitkus 2023-09-19 11:01:34 +03:00
parent d073e5cde9
commit ee4f1d2657
No known key found for this signature in database
GPG Key ID: 13BA67A9A2FE37B0

View File

@ -112,11 +112,11 @@ have the same precedence. Examples: 1.0.0-alpha+001, 1.0.0+20130313144700,
1. Precedence refers to how versions are compared to each other when ordered.
1. Precedence MUST be calculated by separating the version into major,
minor, patch and pre-release identifiers in that order (Build metadata
minor, patch and pre-release identifiers in that order (build metadata
does not figure into precedence).
1. Precedence is determined by the first difference when comparing each of
these identifiers from left to right as follows: Major, minor, and patch
these identifiers from left to right as follows: major, minor, and patch
versions are always compared numerically.
Example: 1.0.0 < 2.0.0 < 2.1.0 < 2.1.1.