Skip to content

Commit

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

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

> [!IMPORTANT] Ignores the minor, patch and pre-release versions completely
> [!IMPORTANT]
> Ignores the minor, patch and pre-release versions completely
```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand All @@ -145,7 +146,8 @@ $version1->lte($version2, Compare::MAJOR); // true

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

> [!IMPORTANT] Ignores the patch and pre-release versions completely
> [!IMPORTANT]
> Ignores the patch and pre-release versions completely
```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand All @@ -161,7 +163,8 @@ $version1->lte($version2, Compare::MINOR); // true

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

> [!IMPORTANT] Ignores the pre-release version completely
> [!IMPORTANT]
> Ignores the pre-release version completely
```php
$version1 = new SemVer\Version('v1.2.3-alpha.4');
Expand Down

0 comments on commit 5390df6

Please sign in to comment.