diff options
author | Andre Sander <Sanderand@users.noreply.github.com> | 2024-06-18 19:46:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 11:46:45 -0600 |
commit | 5a932419191dbeb2ccd2a44d39b83160ccf12b30 (patch) | |
tree | 1618aabacd3049c2f9638ded9edcaf7ad3b0b2b4 | |
parent | ae56f211af5e2462a9e8e148d28441c89faa5bb0 (diff) | |
download | htmx-5a932419191dbeb2ccd2a44d39b83160ccf12b30.tar.gz htmx-5a932419191dbeb2ccd2a44d39b83160ccf12b30.zip |
Remove duplicated "the" (#2621)
-rw-r--r-- | www/content/docs.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/content/docs.md b/www/content/docs.md index 7084dab8..a1cf91ca 100644 --- a/www/content/docs.md +++ b/www/content/docs.md @@ -380,7 +380,7 @@ attribute with a CSS selector to do so: Here we call out the indicator explicitly by id. Note that we could have placed the class on the parent `div` as well and had the same effect. -You can also add the [the `disabled` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled) to +You can also add the [`disabled` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled) to elements for the duration of a request by using the [hx-disabled-elt](@/attributes/hx-disabled-elt.md) attribute. ### Targets @@ -1641,7 +1641,7 @@ listed below: | `htmx.config.inlineStyleNonce` | defaults to `''`, meaning that no nonce will be added to inline styles | | `htmx.config.useTemplateFragments` | defaults to `false`, HTML template tags for parsing content from the server (not IE11 compatible!) | | `htmx.config.wsReconnectDelay` | defaults to `full-jitter` | -| `htmx.config.wsBinaryType` | defaults to `blob`, the [the type of binary data](https://developer.mozilla.org/docs/Web/API/WebSocket/binaryType) being received over the WebSocket connection | +| `htmx.config.wsBinaryType` | defaults to `blob`, the [type of binary data](https://developer.mozilla.org/docs/Web/API/WebSocket/binaryType) being received over the WebSocket connection | | `htmx.config.disableSelector` | defaults to `[hx-disable], [data-hx-disable]`, htmx will not process elements with this attribute on it or a parent | | `htmx.config.withCredentials` | defaults to `false`, allow cross-site Access-Control requests using credentials such as cookies, authorization headers or TLS client certificates | | `htmx.config.timeout` | defaults to 0, the number of milliseconds a request can take before automatically being terminated | |