From e8a976a543070bce4d661b5289e16d1097a593bc Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Fri, 18 Jun 2021 16:16:27 -0700 Subject: [PATCH] update docs, remove reference to Inifinity --- docs/collections.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/collections.md b/docs/collections.md index 474bbe7a1..0f714c308 100644 --- a/docs/collections.md +++ b/docs/collections.md @@ -137,7 +137,7 @@ export async function createCollection() { // Finally, `pageSize` and `pagination` is still on by default. Because // we don't want to paginate the already-grouped pages a second time, we'll // disable pagination. - pageSize: Infinity, + pageSize: 1, }; } --- @@ -179,8 +179,8 @@ export async function createCollection() { return allPokemon[params.index]; }, // Note: The default pageSize is fine because technically only one data object - // is ever returned per route. We set it to Infinity in this example for completeness. - pageSize: Infinity, + // is ever returned per route. We can set it to "1" in this example for completeness. + pageSize: 1, }; } ---