Skip to content

Commit 9fb74f3

Browse files
authored
fix(curriculum): replace quote marks with back ticks for text (freeCodeCamp#58517)
1 parent 8455309 commit 9fb74f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dc1798ff86c76b9248c6eb3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ assert(
4646
);
4747
```
4848

49-
Your `h1` element's text should be 'CatPhotoApp'. You have either omitted the text or have a typo.
49+
Your `h1` element's text should be `CatPhotoApp`. You have either omitted the text or have a typo.
5050

5151
```js
5252
assert(document.querySelector('h1').innerText.toLowerCase() === 'catphotoapp');
@@ -64,7 +64,7 @@ Your `h2` element should have a closing tag. Closing tags have a `/` just after
6464
assert(code.match(/<\/h2\>/));
6565
```
6666

67-
Your `h2` element's text should be 'Cat Photos'. Only place the text `Cat Photos` between the opening and closing `h2` tags.
67+
Your `h2` element's text should be `Cat Photos`. Only place the text `Cat Photos` between the opening and closing `h2` tags.
6868

6969
```js
7070
assert(document.querySelector('h2').innerText.toLowerCase() === 'cat photos');

0 commit comments

Comments
 (0)