Skip to content

Commit 4790e30

Browse files
committed
fix typo
1 parent 8be533a commit 4790e30

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

v5/utilities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -725,15 +725,15 @@ The `Str::quiet()` method checks if a value is `null` or a string that is blank
725725
use \TypeRocket\Utility\Str;
726726

727727
Str::quiet('');
728-
// false
728+
// true
729729

730730
Str::quiet(' ');
731731
// true
732732

733733
Str::quiet(null);
734734
// true
735735

736-
Str::quiet(0);
736+
Str::quiet('0');
737737
// false
738738
```
739739

0 commit comments

Comments
 (0)