Skip to content

Commit 0e257ee

Browse files
committed
doc
1 parent 9594786 commit 0e257ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,9 @@ var_dump(Finder::rows(
361361
// WITH gather only limited found data
362362
$data = [1, 2];
363363
$filter = static fn($datum): bool => $datum >= 0;
364+
$limit = 1;
364365

365366
var_dump(
366-
Finder::rows($data, $filter, limit: 1)
367+
Finder::rows($data, $filter, limit: $limit)
367368
); // [1]
368369
```

0 commit comments

Comments
 (0)