fix(curriculum): better wording in workshop-todo-app (#60075)

This commit is contained in:
Roja Pinnamraju 2025-05-01 08:39:56 -07:00 committed by GitHub
parent 6f51bd86dc
commit ca45f715c2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ const matched = __helpers.removeJSComments(splitted).match(/<div(?<attributes>.*
assert.match(matched?.groups.attributes, /\s+class\s*=\s*('|")task\1(\s|$)/);
```
Your `div` element should have the `id` `${id}`.
Your `div` element should have an `id` of `${id}`.
```js
const splitted = code.split(/tasksContainer\s*\.\s*innerHTML\s*\+=\s*`/)[1]