fix(curriculum): fix hint to match its test in CatPhotoApp Step 29 (#47034)

fix(curriculum): fix hint to match its test
This commit is contained in:
sidemt
2022-07-27 02:38:19 +09:00
committed by GitHub
parent 274f4e63be
commit c14fc27039

View File

@@ -19,7 +19,7 @@ Your `figure` element should have an opening tag. Opening tags have this syntax:
assert(document.querySelectorAll('figure').length === 2);
```
Your `ol` element should have a closing tag. Closing tags have a `/` just after the `<` character.
Your `figure` element should have a closing tag. Closing tags have a `/` just after the `<` character.
```js
assert(code.match(/<\/figure>/g).length === 2);