fix(collection): filter() markdown (#9402)

This commit is contained in:
Jiralite 2023-04-16 19:21:47 +01:00 committed by GitHub
parent cf1f5c0f0c
commit 1c35425120
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -106,7 +106,7 @@ collection.sweep((user) => user.username === 'Bob');
</CH.Code>
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:
<CH.Code>