fix(curriculum): add code block to input element in cat photo app step 36 (#46844)

fix: add code block to input element
This commit is contained in:
Manabu Matsumoto 2022-07-11 01:14:44 +09:00 committed by GitHub
parent 00d6e1acd8
commit 05923624e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ Your `form` element's opening tag should only have an `action` attribute. Remove
assert([...document.querySelector('form').attributes].length < 2);
```
You should create an input element. Check the syntax.
You should create an `input` element. Check the syntax.
```js
assert(document.querySelector('input'));