From 1c35425120ef0712fc13a1c4aedd68fa8acafe23 Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Sun, 16 Apr 2023 19:21:47 +0100 Subject: [PATCH] fix(collection): `filter()` markdown (#9402) --- apps/guide/src/content/03-additional-info/02-collections.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/guide/src/content/03-additional-info/02-collections.mdx b/apps/guide/src/content/03-additional-info/02-collections.mdx index b7be2dbbb..c86cd16dc 100644 --- a/apps/guide/src/content/03-additional-info/02-collections.mdx +++ b/apps/guide/src/content/03-additional-info/02-collections.mdx @@ -106,7 +106,7 @@ collection.sweep((user) => user.username === 'Bob'); A more complicated method is _`partition`_, which splits a single Collection into two new Collections based on the provided function. -You can think of it as two \_`filter`\_s, but done at the same time: +You can think of it as two \_`filter`\_ methods, but done at the same time: