Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 41a2a32

Browse files
committed
docs: few changes for coherence
1 parent 770c1d9 commit 41a2a32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/03-rules_blank.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type: `?callable` default: `null`
3131

3232
Allows to define a `callable` that will be applied to the value before checking if it is valid.
3333

34-
For example, use `trim`, or pass your own function, to not allow a string with whitespaces only:
34+
For example, use `trim`, or pass your own function, to allow a string with whitespaces only:
3535

3636
```php
3737
Validator::blank(normalizer: 'trim')->validate(' '); // true

docs/03-rules_not-blank.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NotBlank
22

3-
Validates that a value is not equal to a blank string, blank array, `false` or `null`.
3+
Validates that a value is not equal to an empty string, empty array, `false` or `null`.
44

55
Check the [Blank](03-rules_blank.md) rule for the opposite validation.
66

0 commit comments

Comments
 (0)