Fix typos in 03_Lists.md

This commit is contained in:
Manuel Thalmann 2021-05-14 02:07:00 +02:00 committed by GitHub
parent 07bcd041ab
commit 6e499b73af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,10 +110,10 @@ foreach ($members as $member) {
} }
``` ```
They are some limitations: There are some limitations:
* `chunkedFetch()` will ignore any limit or offset you have applied to your DataList * `chunkedFetch()` will ignore any limit or offset you have applied to your DataList
* you can not "count" a chunked list or do any other call against it aside from iterating it * you cannot "count" a chunked list or do any other call against it aside from iterating it
* while iterating over a chunked list, you can not perform any operation that would alter the order of the items. * while iterating over a chunked list, you cannot perform any operation that would alter the order of the items.
## ArrayList ## ArrayList