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];