fix: some backtick fixes (#57670)

This commit is contained in:
Ilenia 2024-12-21 13:56:33 +01:00 committed by GitHub
parent 06bd42e97e
commit 67e63b5fd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ You should have a function `formatDateMMDDYYYY`
assert.isFunction(formatDateMMDDYYYY);
```
The function`formatDateMMDDYYYY` should take a single parameter.
The function `formatDateMMDDYYYY` should take a single parameter.
```js
assert.lengthOf(formatDateMMDDYYYY, 1);
@ -91,7 +91,7 @@ You should have a function `formatDateLong`
assert.isFunction(formatDateLong);
```
The function`formatDateLong` should take a single a parameter.
The function `formatDateLong` should take a single a parameter.
```js
assert.lengthOf(formatDateLong, 1);

View File

@ -86,7 +86,7 @@ Consider how inline-block strikes a balance between inline flow and size control
## --text--
In what situation would an element with d`isplay: inline-block;` behave differently than one with `display: block;`?
In what situation would an element with `display: inline-block;` behave differently than one with `display: block;`?
## --answers--

View File

@ -14,7 +14,7 @@ Watch the lecture video and answer the questions below.
## --text--
What does the inde`xOf method return if the substring is not found in the string?
What does the `indexOf` method return if the substring is not found in the string?
## --answers--

View File

@ -205,7 +205,7 @@ What is the difference between the attributes `aria-label` and `aria-labelledby`
#### --distractors--
The `aria-label`and `aria-labelledby` attributes serve the same purpose.
The `aria-label` and `aria-labelledby` attributes serve the same purpose.
---