Fix type in HexRgbColor documentation

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
This commit is contained in:
Henrique Moody 2024-03-11 23:14:36 +01:00
parent 788939e359
commit 955405b997
No known key found for this signature in database
GPG key ID: 221E9281655813A6
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
- `HexRgbColor()`
Validates weather the input is a hex RGB color or not.
Validates whether the input is a hex RGB color or not.
```php
v::hexRgbColor()->validate('#FFFAAA'); // true

View file

@ -10,7 +10,7 @@ declare(strict_types=1);
namespace Respect\Validation\Rules;
/**
* Validates weather the input is a hex RGB color or not.
* Validates whether the input is a hex RGB color or not.
*
* @author Davide Pastore <pasdavide@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>