Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #36422

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .vscode/ignore-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ addevent
addeventlistener
addgamepad
Addis
addpipe
addressbar
addsourcebuffer
addstream
Expand Down Expand Up @@ -239,6 +240,7 @@ APPCOMMAND
appcontent
Appelquist
appinstalled
Appium
applicationcache
appname
appshell
Expand Down Expand Up @@ -2009,6 +2011,7 @@ hexdigit
Hextris
Heydings
Heydon
heydonworks
HHMM
Hickson's
Hidde
Expand Down Expand Up @@ -3856,6 +3859,7 @@ protan
protanomaly
PROTO
Proxied
proxified
proxify
proxyfied
proxyhandler
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/clipboarditem/clipboarditem/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ new ClipboardItem(data, options)
- : One of the three strings: `unspecified`, `inline` or `attachment`.
The default is `unspecified`.

`inline` signifies to apps that recieve the paste that the `ClipboardItem` should be inserted inline at the point of paste. `attachment` signifies to apps that recieve the paste that the `ClipboardItem` should be added as an attachment. `unspecified` doesn't signify any information to apps that recieve the paste.
`inline` signifies to apps that receive the paste that the `ClipboardItem` should be inserted inline at the point of paste. `attachment` signifies to apps that receive the paste that the `ClipboardItem` should be added as an attachment. `unspecified` doesn't signify any information to apps that receive the paste.

> [!NOTE]
> You can also work with text via the {{domxref("Clipboard.readText()")}} and {{domxref("Clipboard.writeText()")}} methods of the {{domxref("Clipboard")}} interface.
Expand Down
4 changes: 2 additions & 2 deletions files/en-us/web/api/gpucanvascontext/configure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ configure(configuration)

- : An object specifying parameters that define the tone mapping for the context — how the content of associated textures are to be displayed. This allows WebGPU to draw colors brighter than `white` (`#FFFFFF`). Possible properties are:
- `mode` {{optional_inline}}
- : An emumerated value specifying the tone mapping mode for the canvas. Possible values include:
- : An enumerated value specifying the tone mapping mode for the canvas. Possible values include:
- `standard`
- : The default value. Restricts rendered content to the Standard Dynamic Range (SDR) of the display. This mode is accomplished by clamping all color values in the color space of the screen to the `[0, 1]` interval.
- `extended`
- : Allows content to be rendered in the full High Dynamic Range (HDR) of the display, where available. HDR mode allows a wider range of colors and brightness levels to be diplayed, with more precise instructions as to what color should be displayed in each case. This mode matches `"standard"` in the `[0, 1]` range of the screen. Clamping or projection is done to the extended dynamic range of the screen but not `[0, 1]`.
- : Allows content to be rendered in the full High Dynamic Range (HDR) of the display, where available. HDR mode allows a wider range of colors and brightness levels to be displayed, with more precise instructions as to what color should be displayed in each case. This mode matches `"standard"` in the `[0, 1]` range of the screen. Clamping or projection is done to the extended dynamic range of the screen but not `[0, 1]`.

- `usage` {{optional_inline}}

Expand Down