From 05923624e98a577e87d67cce8512cffdab47147a Mon Sep 17 00:00:00 2001 From: Manabu Matsumoto Date: Mon, 11 Jul 2022 01:14:44 +0900 Subject: [PATCH] fix(curriculum): add code block to input element in cat photo app step 36 (#46844) fix: add code block to input element --- .../5ef9b03c81a63668521804d8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d8.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d8.md index f18822dccef..5e5a2079366 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d8.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d8.md @@ -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'));