From 43f970aa3fc1f55ab50535db8578ad34b3caf488 Mon Sep 17 00:00:00 2001 From: Etkesmeci <96954609+Etkesmeci@users.noreply.github.com> Date: Tue, 11 Jan 2022 17:32:37 +0300 Subject: [PATCH] fix(curriculum): Additional clarification in hint (#44746) --- .../learn-html-by-building-a-cat-photo-app/step-055.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/step-055.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/step-055.md index 0de2ef123c..cc6828c3bc 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/step-055.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/step-055.md @@ -25,7 +25,7 @@ Your checkbox should still have an `id` attribute with the value `loving`. You m assert($('input[type="checkbox"]')[0].id === 'loving'); ``` -The text ` Loving` should no longer be located directly to the right of your checkbox. It should be wrapped in a `label` element. +The text ` Loving` should no longer be located directly to the right of your checkbox. It should be wrapped in a `label` element. Make sure there is a space between the two elements. ```js const checkboxInputElem = $('input[type="checkbox"]')[0];