fix(curriculum): correct typos (#47690)

fix(docs): correct typos
This commit is contained in:
Erkan Zileli
2022-10-01 11:46:07 +03:00
committed by GitHub
parent 5e162681af
commit e42e7dbd30
2 changed files with 2 additions and 2 deletions

View File

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

View File

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