fix(curriculum): typo in recipe ingredient converter step 11 (#58229)

Co-authored-by: Je Yang <jeyang@Jes-MacBook-Pro.communityfibre.co.uk>
This commit is contained in:
je-repo 2025-01-19 07:08:08 +00:00 committed by GitHub
parent 6f1444bcbd
commit cd34f91151
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,7 +33,7 @@ Your `adjustForServings` function should return a function.
assert.isFunction(adjustForServings?.());
```
Your inner function should accept a `newServings` argmuent.
Your inner function should have a `newServings` parameter.
```js
assert.match(adjustForServings?.()?.toString(), /\(newServings\)/);