Skip to content

Commit f061420

Browse files
authored
fix: Multiple instances of repetition (mdn#40940)
1 parent 21ffee2 commit f061420

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

files/en-us/web/api/document_object_model/reflected_attributes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ console.log(inputElement.ariaLabelledByElements);
141141

142142
The first thing to note from the code above is that the attribute and the property contain different numbers of elements — the property doesn't _directly_ reflect the attribute because the reference `label_3` does not have a corresponding element.
143143
It is also possible that a reference will not match because the `id` is [out of scope for the element](#element_id_reference_scope).
144-
This can happen if the referenced element is not in the same DOM or shadow DOM as the element, since ids are only only valid in the scope in which they are declared.
144+
This can happen if the referenced element is not in the same DOM or shadow DOM as the element, since ids are only valid in the scope in which they are declared.
145145

146146
We can iterate the elements in the property array, in this case to get the accessible name from their inner text (this is more natural than using the attribute, because we don't have to first get the element references and then use them to find the elements, and we only have to work with elements that we know to be available in the current scope):
147147

files/en-us/web/api/rtcinboundrtpstreamstats/totalassemblytime/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A number, in seconds.
2121

2222
## Description
2323

24-
The property is updated whenever a video frame that was transported in multiple RTP packets is is successfully decoded.
24+
The property is updated whenever a video frame that was transported in multiple RTP packets is successfully decoded.
2525
The time increment is calculated by subtracting the timestamp of the last and first RTP packets that contained the video frame data.
2626
The time is not updated for video frames that are not decoded, or that are transported entirely within one RTP packet.
2727

files/en-us/web/api/urlpattern/exec/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The object has the following properties:
4343

4444
- `inputs`
4545
- : An array containing the inputs passed to the `exec()` function.
46-
This will either contain a passed `input` object, an an absolute `url` string, or a relative `url` and a `baseURL`.
46+
This will either contain a passed `input` object, an absolute `url` string, or a relative `url` and a `baseURL`.
4747

4848
- `protocol`, `username`, `password`, `hostname`, `port`, `pathname`, `search`, and `hash`
4949
- : Named properties for each URL-part.

files/en-us/web/api/urlpattern/hash/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A string.
2020

2121
### Basic usage
2222

23-
The below example creates a {{domxref("URLPattern")}} object with with `books/:id` for the `hash` part and logs the property.
23+
The below example creates a {{domxref("URLPattern")}} object with `books/:id` for the `hash` part and logs the property.
2424
This pattern matches any fragment that starts with `books/` and ends with an arbitrary string identifier.
2525

2626
```js

files/en-us/web/html/reference/elements/input/color/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ In addition to the [global attribute](/en-US/docs/Web/HTML/Reference/Global_attr
6060
- : A [boolean](/en-US/docs/Glossary/Boolean/HTML) attribute, if present, indicates the color's alpha component can be manipulated by the end user and does not have to be fully opaque.
6161

6262
- `colorspace` {{experimental_inline}}
63-
- : Defines the the {{glossary("color space")}} for the color and hints at the desired user interface for the color picker widget. Possible {{Glossary("enumerated")}} values are:
63+
- : Defines the {{glossary("color space")}} for the color and hints at the desired user interface for the color picker widget. Possible {{Glossary("enumerated")}} values are:
6464
- `"limited-srgb"`: The color is in the {{glossary("RGB". "sRGB")}} color space. This includes [`rgb()`](/en-US/docs/Web/CSS/color_value/rgb), [`hsl()`](/en-US/docs/Web/CSS/color_value/hsl), [`hwb()`](/en-US/docs/Web/CSS/color_value/hwb), and {{cssxref("hex-color")}} values. The color value is limited to 8-bits per `r`, `g`, and `b` component. This is the default.
6565
- `"display-p3"`: The [Display P3 color space](/en-US/docs/Glossary/Color_space#display-p3), e.g., `color(display-p3 1.84 -0.19 0.72 / 0.6)`
6666

0 commit comments

Comments
 (0)