diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/24-game.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/24-game.md index 8026cfe5904..02282d828f0 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/24-game.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/24-game.md @@ -51,7 +51,7 @@ assert(isValidSolution_(solve24(testCases_[0]))); assert(isValidSolution_(solve24(testCases_[1]))); ``` -`solve24("6789")` should return `(6*8)/(9-7)`. `(8*6)/(9-7)`, or a similar valid string +`solve24("6789")` should return `(6*8)/(9-7)`, `(8*6)/(9-7)`, or a similar valid string ```js assert(isValidSolution_(solve24(testCases_[2]))); diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index 45e52a3a8c3..1c5af09ce6b 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -20,7 +20,7 @@ You should nest a new anchor (`a`) element within the `p` element. assert($('p > a').length); ``` -The link's href value should be `https://freecatphotoapp.com`. You have either omitted the href value or have a typo. +The link's `href` value should be `https://freecatphotoapp.com`. You have either omitted the `href` value or have a typo. ```js const nestedAnchor = $('p > a')[0];