From c28e8f3fba0306c26aecd2bde99cd9b9c647daf1 Mon Sep 17 00:00:00 2001 From: "electron-website-docs-updater[bot]" <166660481+electron-website-docs-updater[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 14:05:08 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20update=20ref=20to=20docs=20(?= =?UTF-8?q?=F0=9F=A4=96)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/latest/api/session.md | 2 +- docs/latest/api/touch-bar-scrubber.md | 2 +- docs/latest/api/web-utils.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/latest/api/session.md b/docs/latest/api/session.md index ecd9354..edd54ad 100644 --- a/docs/latest/api/session.md +++ b/docs/latest/api/session.md @@ -1518,7 +1518,7 @@ Returns `Promise` - resolves when all data has been cleared. Clears various different types of data. -This method clears more types of data and is more thourough than the +This method clears more types of data and is more thorough than the `clearStorageData` method. **Note:** Cookies are stored at a broader scope than origins. When removing cookies and filtering by `origins` (or `excludeOrigins`), the cookies will be removed at the [registrable domain](https://url.spec.whatwg.org/#host-registrable-domain) level. For example, clearing cookies for the origin `https://really.specific.origin.example.com/` will end up clearing all cookies for `example.com`. Clearing cookies for the origin `https://my.website.example.co.uk/` will end up clearing all cookies for `example.co.uk`. diff --git a/docs/latest/api/touch-bar-scrubber.md b/docs/latest/api/touch-bar-scrubber.md index 8b0b4c8..b40383a 100644 --- a/docs/latest/api/touch-bar-scrubber.md +++ b/docs/latest/api/touch-bar-scrubber.md @@ -46,7 +46,7 @@ updates the control in the touch bar. Possible values: #### `touchBarScrubber.overlayStyle` -A `string` representing the style that selected items in the scrubber should have. This style is overlayed on top +A `string` representing the style that selected items in the scrubber should have. This style is overlaid on top of the scrubber item instead of being placed behind it. Updating this value immediately updates the control in the touch bar. Possible values: diff --git a/docs/latest/api/web-utils.md b/docs/latest/api/web-utils.md index a0fdd05..99b8e17 100644 --- a/docs/latest/api/web-utils.md +++ b/docs/latest/api/web-utils.md @@ -21,7 +21,7 @@ The `webUtils` module has the following methods: Returns `string` - The file system path that this `File` object points to. In the case where the object passed in is not a `File` object an exception is thrown. In the case where the File object passed in was constructed in JS and is not backed by a file on disk an empty string is returned. -This method superceded the previous augmentation to the `File` object with the `path` property. An example is included below. +This method superseded the previous augmentation to the `File` object with the `path` property. An example is included below. ```js // Before