Skip to content

Commit

Permalink
fix typos (#36324)
Browse files Browse the repository at this point in the history
  • Loading branch information
OnkarRuikar authored Oct 15, 2024
1 parent 2b26cc6 commit 0f7f70e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .vscode/ignore-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4819,6 +4819,7 @@ Tamaran
tamen
taml
tamldec
tanuki
Tanx
targetable
TARGETDURATION
Expand Down Expand Up @@ -5279,6 +5280,7 @@ usermail
usermessage
userpic
userproximity
userscript
userscripts
USERSPACEONUSE
usertext
Expand Down
4 changes: 4 additions & 0 deletions .vscode/terms-abbreviations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,17 @@ nolint
okan
Oklab
oklch
onscrollsnapchange
onscrollsnapchanging
Paciello
Pinia
prophoto
reprioritize
rgba
ripgrep
rustc
scrollsnapchange
scrollsnapchanging
sctp
SMIL
srgb
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlinputelement/formmethod/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ browser-compat: api.HTMLInputElement.formMethod

{{APIRef("HTML DOM")}}

The **`formMethod`** property of the {{domxref("HTMLInputElement")}} interface is the {{Glossary("HTTP")}} method used to submit the {{HtmlElement("form")}} if the {{HTMLElement("input")}} element is the control that sumbits the form. It reflects the value of the `<input>`'s [`formmethod`](/en-US/docs/Web/HTML/Element/input#formmethod) attribute.
The **`formMethod`** property of the {{domxref("HTMLInputElement")}} interface is the {{Glossary("HTTP")}} method used to submit the {{HtmlElement("form")}} if the {{HTMLElement("input")}} element is the control that submits the form. It reflects the value of the `<input>`'s [`formmethod`](/en-US/docs/Web/HTML/Element/input#formmethod) attribute.

This property is valid only for [`submit`](/en-US/docs/Web/HTML/Element/input/submit) and [`image`](/en-US/docs/Web/HTML/Element/input/image) `<input>` elements.

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/request/keepalive/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const options = {
};

const myRequest = new Request("flowers.jpg", options);
let mykeepalive = myRequest.keepalive; // true
let myKeepAlive = myRequest.keepalive; // true
```

## Specifications
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ main {
}
```

Next, we are going to use CSS animations in this example instead of transtions. This results in more complex code, but enables more fine-grained control over the animations applied.
Next, we are going to use CSS animations in this example instead of transitions. This results in more complex code, but enables more fine-grained control over the animations applied.

We first define the classes that will be applied to signal that a snap target selection has been made or is pending. The `select-section` and `deselect-section` classes will apply keyframe animations to signify a selection or deselection. The `pending` class will be applied to signify a pending snap target selection (it applies a darker gray background to the selection, as in the previous example).

Expand Down
6 changes: 3 additions & 3 deletions files/en-us/web/manifest/prefer_related_applications/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ Consider a scenario where you have both a web app and native apps for your produ
"related_applications": [
{
"platform": "play",
"id": "com.example.hikingapp"
"id": "com.example.hiking-app"
},
{
"platform": "windows",
"url": "https://apps.microsoft.com/store/hikingapp/9WZDNCRFHVJL"
"url": "https://apps.microsoft.com/detail/9nqx6sv74srz"
}
]
}
Expand All @@ -60,7 +60,7 @@ To encourage users to install your native Android hiking app from Google Play St
"related_applications": [
{
"platform": "play",
"id": "com.example.hikingapp"
"id": "com.example.hiking-app"
}
]
}
Expand Down

0 comments on commit 0f7f70e

Please sign in to comment.