Skip to content

Commit 412f0b3

Browse files
committed
Removed [!IMPORTANT]
1 parent 5390df6 commit 412f0b3

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff 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');

0 commit comments

Comments
 (0)