fix(curriculum): fix mismatch description (#46342)

This commit is contained in:
Alan Luo
2022-06-05 09:58:24 -07:00
committed by GitHub
parent 12e3b8a40c
commit 095cf332fe

View File

@@ -25,7 +25,7 @@ Your new `span` element should have the `class` attribute set to `right`.
assert(document.querySelector('span')?.classList?.contains('right'));
```
Your `.right` element should have the text `2/3 cup (55g)`.
Your `span` element should have the text `2/3 cup (55g)`.
```js
assert(document.querySelector('span')?.textContent === '2/3 cup (55g)');