fix(curriculum): missing word and backticks

This commit is contained in:
Ilenia
2022-05-10 12:11:31 +02:00
committed by GitHub
parent 668c7225fc
commit 2bebb92189

View File

@@ -27,7 +27,7 @@ Your anchor (`a`) element does not have a `target` attribute. Check that there i
assert(document.querySelector('a').hasAttribute('target'));
```
The value of the `target` attribute should '\_blank'. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks.
The value of the `target` attribute should be `\_blank`. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks.
```js
assert(document.querySelector('a').getAttribute('target') === '_blank');