From e1262977bafede555425e1eac3ce421bf40b9cc8 Mon Sep 17 00:00:00 2001 From: Farhan Hasin Chowdhury Date: Fri, 25 Mar 2022 18:16:48 +0600 Subject: [PATCH] chore: fixed mistakes in the source string (#45517) Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- .../5efb23e70dc218d6c85f89b1.md | 4 ++-- .../5f0d4d04b435f13ab6550053.md | 2 +- .../7cf9b03d81a65668421804c3.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb23e70dc218d6c85f89b1.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb23e70dc218d6c85f89b1.md index af9feb0477..12b2ae60dc 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb23e70dc218d6c85f89b1.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efb23e70dc218d6c85f89b1.md @@ -13,7 +13,7 @@ Create a text field to get text input from a user by adding the `type` attribute # --hints-- -You have either deleted your `input` element or it has invalid syntax. If you have added an attributes, make sure their values are surrounded by quotation marks. +You have either deleted your `input` element or it has invalid syntax. If you have added attributes, make sure their values are surrounded by quotation marks. ```js assert($('input').length); @@ -28,7 +28,7 @@ assert( ); ``` -Your `input` element does not have a `type` attribute. with the value `text`. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. +Your `input` element does not have a `type` attribute with the value `text`. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. ```js assert($('input')[0].hasAttribute('type')); diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f0d4d04b435f13ab6550053.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f0d4d04b435f13ab6550053.md index c1e1d93a03..6e9654dd63 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f0d4d04b435f13ab6550053.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5f0d4d04b435f13ab6550053.md @@ -11,7 +11,7 @@ Add a `legend` element with the text `What's your cat's personality?` inside the # --hints-- -You have either deleted the second `fieldset` element or it is missing an opening tag or closing tag." +You have either deleted the second `fieldset` element or it is missing an opening tag or closing tag. ```js assert( diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/7cf9b03d81a65668421804c3.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/7cf9b03d81a65668421804c3.md index f1e7e3b80d..041e41ad3e 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/7cf9b03d81a65668421804c3.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/7cf9b03d81a65668421804c3.md @@ -19,7 +19,7 @@ You have either deleted your `input` element or it has invalid syntax. All attri assert($('input').length); ``` -Your `form` should only contain the `input` element. Remove any HTML additional elements or text within the `form` element. +Your `form` should only contain the `input` element. Remove any additional HTML elements or text within the `form` element. ```js assert(