Skip to content

Commit

Permalink
Removed [!IMPORTANT]
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Sep 19, 2024
1 parent 5390df6 commit 412f0b3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ $version1->lte($version2); // true

##### Limit comparison to the major version only

> [!IMPORTANT]
> Ignores the minor, patch and pre-release versions completely
Ignores the minor, patch and pre-release versions completely

```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand All @@ -146,8 +145,7 @@ $version1->lte($version2, Compare::MAJOR); // true

##### Limit comparison to the major and minor versions only

> [!IMPORTANT]
> Ignores the patch and pre-release versions completely
Ignores the patch and pre-release versions completely

```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand All @@ -163,8 +161,7 @@ $version1->lte($version2, Compare::MINOR); // true

##### Limit comparison to the major, minor and patch versions only

> [!IMPORTANT]
> Ignores the pre-release version completely
Ignores the pre-release version completely

```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand Down

0 comments on commit 412f0b3

Please sign in to comment.