From 233c0c4c8dd40f8f1713c04ed6f92e3798ca8050 Mon Sep 17 00:00:00 2001 From: Danish Humair Date: Mon, 29 Jan 2024 21:18:32 +0500 Subject: [PATCH] Replaced typo 'doucument' with 'document' (#4637) fixes #4635 ## PR Type - Documentation content changes ## Describe the current behavior? ## Describe the new behavior? Replace typo "doucument" with "document" ## PR Checklist - [ ] Test: run `npm run test` and ensure that all tests pass - [ ] Target main branch (or an appropriate release branch if appropriate for a bug fix) - [ ] Ensure that your contribution follows [standard accessibility guidelines](https://docs.microsoft.com/en-us/microsoft-edge/accessibility/design). Use tools like https://webhint.io/ to validate your changes. ## Additional Information --- docs/builder/manifest.md | 2 +- libraries/manifest-information/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/builder/manifest.md b/docs/builder/manifest.md index 04b0eb670..9b52087a1 100644 --- a/docs/builder/manifest.md +++ b/docs/builder/manifest.md @@ -363,7 +363,7 @@ The `share_target` member is an object which can contain the following members: * `method`: `GET` or `POST`. Use `POST` if the shared data includes binary data like images. * `enctype`: The encoding of the data when the method is a `POST` request. Otherwise, ignored. * `params`: The object that allows you to configure the share parameters. Should corresponded to the object exposed by `navigator.share()`. ***Required member*** - * `title`: Name of the query parameter for the title of the doucument being shared. + * `title`: Name of the query parameter for the title of the document being shared. * `text`: Name of the query parameter for the body of the message being shared. * `url`: Name of the query parameter for the URL being shared. * `files` diff --git a/libraries/manifest-information/src/index.ts b/libraries/manifest-information/src/index.ts index 76b18381b..43bafb878 100644 --- a/libraries/manifest-information/src/index.ts +++ b/libraries/manifest-information/src/index.ts @@ -503,7 +503,7 @@ export const manifest_fields: { [field: string]: infoPanel } = { }, "share_target.params.title": { description: [ - `Name of the query parameter for the title of the doucument being shared.`, + `Name of the query parameter for the title of the document being shared.`, ], purpose: null, example: null,