Skip to content

Commit 1379c0f

Browse files
committed
wording
1 parent 303abf4 commit 1379c0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eloquent-collections.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Of course, all collections also serve as iterators, allowing you to loop over th
1717
echo $user->name;
1818
}
1919

20-
However, collections are much more powerful than arrays and expose a variety of map / reduce operations using an intuitive interface. For example, let's remove all inactive models and gather the first name for each remaining user:
20+
However, collections are much more powerful than arrays and expose a variety of map / reduce operations that may be chained using an intuitive interface. For example, let's remove all inactive models and gather the first name for each remaining user:
2121

2222
$users = App\User::where('active', 1)->get();
2323

0 commit comments

Comments
 (0)