fix(curriculum): correct "containting" typo in lab product showcase (#67110)

This commit is contained in:
Clarence Bakosi
2026-04-25 13:04:23 +01:00
committed by GitHub
parent 2fa0ba4f6f
commit 408f6babef

View File

@@ -264,7 +264,7 @@ const { Collection } = explorer.classes;
assert.exists(Collection.methods.filter);
```
Your `filter` method should accept a callback function and return an array containting the elements of the `items` property that satisfy the given condition.
Your `filter` method should accept a callback function and return an array containing the elements of the `items` property that satisfy the given condition.
```js
let arr = [1, 2, 3, 4, 5, 6];