File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -129,8 +129,7 @@ $version1->lte($version2); // true
129129
130130##### Limit comparison to the major version only
131131
132- > [ !IMPORTANT]
133- > Ignores the minor, patch and pre-release versions completely
132+ Ignores the minor, patch and pre-release versions completely
134133
135134``` php
136135$version1 = new SemVer\Version('v1.2.3-alpha.4');
@@ -146,8 +145,7 @@ $version1->lte($version2, Compare::MAJOR); // true
146145
147146##### Limit comparison to the major and minor versions only
148147
149- > [ !IMPORTANT]
150- > Ignores the patch and pre-release versions completely
148+ Ignores the patch and pre-release versions completely
151149
152150``` php
153151$version1 = new SemVer\Version('v1.2.3-alpha.4');
@@ -163,8 +161,7 @@ $version1->lte($version2, Compare::MINOR); // true
163161
164162##### Limit comparison to the major, minor and patch versions only
165163
166- > [ !IMPORTANT]
167- > Ignores the pre-release version completely
164+ Ignores the pre-release version completely
168165
169166``` php
170167$version1 = new SemVer\Version('v1.2.3-alpha.4');
You can’t perform that action at this time.
0 commit comments