fix(curriculum): fix class names in cat painting project (#54995)

This commit is contained in:
yoko
2024-05-29 20:58:49 +09:00
committed by GitHub
parent b05d9541a3
commit 3ed2d5e271
2 changed files with 3 additions and 3 deletions
@@ -11,13 +11,13 @@ Create two `div` elements, the first inside the `.cat-left-ear` element with a c
# --hints--
You should not change the existing `div` element with the class `cat-left-inner-ear`.
You should not change the existing `div` element with the class `cat-left-ear`.
```js
assert(document.querySelectorAll('div.cat-left-ear').length === 1);
```
You should not change the existing `div` element with the class `cat-right-inner-ear`.
You should not change the existing `div` element with the class `cat-right-ear`.
```js
assert(document.querySelectorAll('div.cat-right-ear').length === 1);
@@ -17,7 +17,7 @@ You should not change the existing `div` element with the class `cat-left-eye`.
assert(document.querySelectorAll('div.cat-left-eye').length === 1);
```
You should not change the existing `div` element with the class `.cat-right-eye`.
You should not change the existing `div` element with the class `cat-right-eye`.
```js
assert(document.querySelectorAll('div.cat-right-eye').length === 1);