Skip to content

Commit 2290fdb

Browse files
authored
fix: Multiple repeated words (#42245)
* fix: Multiple repeated words * fix: Multiple repeated words
1 parent 08a484c commit 2290fdb

File tree

9 files changed

+13
-13
lines changed
  • files/en-us
    • learn_web_development/extensions/forms/form_validation
    • mdn/writing_guidelines/page_structures/macros/commonly_used_macros
    • mozilla/add-ons/webextensions/api/declarativenetrequest/urltransform
    • web

9 files changed

+13
-13
lines changed

files/en-us/learn_web_development/extensions/forms/form_validation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ For numeric fields, including [`<input type="number">`](/en-US/docs/Web/HTML/Ref
272272
If the field contains a value outside this range, it will be invalid.
273273

274274
Let's look at another example.
275-
Create a new copy of the [basic starter file](#basic_starter_file) file (save it in the same directory as `index2.html`).
275+
Create a new copy of the [basic starter file](#basic_starter_file) and save it in the same directory as `index2.html`.
276276

277277
Now delete the contents of the `<body>` element, and replace it with the following:
278278

files/en-us/mdn/writing_guidelines/page_structures/macros/commonly_used_macros/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Example:
172172
- `isCustomObject` {{ReadOnlyInline}}
173173
- : Indicates, if `true`, that the object is a custom one.
174174
- `parameterX` {{optional_inline}}
175-
- : Blah blah blah
175+
- : Indicates
176176

177177
## Status and compatibility indicators
178178

files/en-us/mozilla/add-ons/webextensions/api/declarativenetrequest/urltransform/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ Values of this type are objects. They contain these properties:
2727
- `queryTransform` {{optional_inline}}
2828
- : An object describing how to add, remove, or replace query key-value pairs. Cannot be specified if 'query' is specified.
2929
- `addOrReplaceParams` {{optional_inline}}
30-
- : An array of objects describing the list of query key-value pairs to be added or replaced.
30+
- : An array of objects describing the list of query key-value pairs (`key=value`) to be added or replaced.
3131
- `key`
32-
- : A `string`. The key value.
32+
- : A `string`. The `key` part of `key=value`.
3333
- `replaceOnly` {{optional_inline}}
34-
- : A `boolean`. If true, the query key is replaced only if it's already present. Otherwise, the key is also added if it's missing. Defaults to false.
34+
- : A `boolean`. If true, the query key is replaced only if it's already present. Otherwise, the key is also added if it's missing. Defaults to `false`.
3535
- `value`
36-
- : A `string`. The value value.
36+
- : A `string`. The `value` part of `key=value`.
3737

3838
- `removeParams` {{optional_inline}}
3939
- : An array of `string`. The list of query keys to be removed.

files/en-us/web/api/range/range/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ browser-compat: api.Range.Range
99
{{ APIRef("DOM") }}
1010

1111
The **`Range()`** constructor returns a newly created
12-
{{domxref("Range")}} object whose start and end are offset 0 of the the global {{domxref("Window/document", "document")}}
12+
{{domxref("Range")}} object whose start and end are offset 0 of the global {{domxref("Window/document", "document")}}
1313
object.
1414

1515
## Syntax

files/en-us/web/api/sanitizer/allowelement/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ sanitizer.allowElement({
8989
```
9090

9191
If you need both per-element add-attribute and remove-attribute arrays as shown above, they must be added in a single call to this method.
92-
If you were to do this in two calls the the second call would replace the element definition added in the first call.
92+
If you were to do this in two calls the second call would replace the element definition added in the first call.
9393

9494
When using a `Sanitizer` with a [remove configuration](/en-US/docs/Web/API/HTML_Sanitizer_API#remove_configurations), similar code to add per-element attribute allow or remove arrays will generate a console warning and return `false`.
9595
This is because internally the sanitizer doesn't have the `elements` array required to specify per-element attributes and won't change the configuration.

files/en-us/web/api/storage_access_api/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Third party content embedded in an {{htmlelement("iframe")}} that needs to acces
8888
That means that even if permission is granted, the page will need to load and call `requestStorageAccess()` to activate the permission.
8989
If permission has already been granted then a call to `requestStorageAccess()` will not require transient activation and the promise will fulfill automatically.
9090

91-
The only exception to the "blocked by default" behavior is if an embed performs a same-origin navigation to reload itself after after being granted permission or activating a permission.
91+
The only exception to the "blocked by default" behavior is if an embed performs a same-origin navigation to reload itself after being granted permission or activating a permission.
9292
In such cases, the storage access is carried over from the previous navigation.
9393
This allows the embedded resource to reload itself and gain access to its cookies.
9494

@@ -101,7 +101,7 @@ Third party content embedded in an {{htmlelement("iframe")}} that needs to acces
101101

102102
### Storage access headers
103103

104-
The API requires that a resource must must call `requestStorageAccess()` for each new context to opt-in to activating the storage-access permission, which must already have been granted.
104+
The API requires that a resource must call `requestStorageAccess()` for each new context to opt-in to activating the storage-access permission, which must already have been granted.
105105
This in turn means that the embedded resource must first be requested without cookies and loaded so it can call the method.
106106

107107
The storage access headers enable a workflow where the server can request that the permission is activated for the context, avoiding an unnecessary additional load of the embedded resource if permission has already been granted.

files/en-us/web/css/reference/properties/animation-range/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ If you include two values and the first value is the keyword `normal` or a `<len
100100

101101
### Multiple animations
102102

103-
When specifying ranges for multiple animations, the `animation-range` shorthand property is specified as one or more single animation ranges, separated by commas. Each animation-range is applied to the animations in the order in which the {{cssxref("animation-name")}}s appear. For situations where the number of animations and the `animation-range` property values do not match, if there are more `animation-range` value than animations, the extra ranges are ignore. If there are more animations than ranges, the list of `animation-range` values are repeated until there is a corresponding range for each animation. For example, if we set `animation-range: 25% 75%, normal;`, the animation range of all the odd numbered animations `25% 75%` and all the even animations will be be `0% 100%`.
103+
When specifying ranges for multiple animations, the `animation-range` shorthand property is specified as one or more single animation ranges, separated by commas. Each animation-range is applied to the animations in the order in which the {{cssxref("animation-name")}}s appear. For situations where the number of animations and the `animation-range` property values do not match, if there are more `animation-range` value than animations, the extra ranges are ignore. If there are more animations than ranges, the list of `animation-range` values are repeated until there is a corresponding range for each animation. For example, if we set `animation-range: 25% 75%, normal;`, the animation range of all the odd numbered animations `25% 75%` and all the even animations will be `0% 100%`.
104104

105105
## Formal definition
106106

files/en-us/web/css/reference/values/basic-shape/shape/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ The following `<shape-command>`s can be specified:
118118
- `end`
119119
- : Indicates that the control point is relative to the end point of the current command.
120120
- `origin`
121-
- : Indicates that the control point is relative to the the top-left (origin) point of the container the shape is being drawn inside.
121+
- : Indicates that the control point is relative to the top-left (origin) point of the container the shape is being drawn inside.
122122
> [!NOTE]
123123
> If the `<relative-control-point>` keywords are not specified, making the `<control-point>` a regular `<coordinate-value-pair>`, the coordinates are relative to the start of the curve. In other words, `start` is the default setting.
124124

files/en-us/web/security/attacks/ssrf/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GET /fetch-image?url=https://example.com/image.png
1919

2020
The server has access to the company's intranet.
2121

22-
If the server does not validate the URL parameter is is given, then the client can extract sensitive data by passing intranet URLs to the API:
22+
If the server does not validate the URL parameter is given, then the client can extract sensitive data by passing intranet URLs to the API:
2323

2424
```js
2525
fetch("https://example.org/fetch-image?url=http://localhost:443/admin/org.png");

0 commit comments

Comments
 (0)