Skip to content

Commit

Permalink
Replaced typo 'doucument' with 'document' (#4637)
Browse files Browse the repository at this point in the history
fixes #4635
<!-- Link to relevant issue (for ex: "fixes #1234") which will
automatically close the issue once the PR is merged -->

## PR Type
<!-- Please uncomment one ore more that apply to this PR -->

<!-- - Bugfix -->
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
- Documentation content changes
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## Describe the current behavior?
<!-- Please describe the current behavior that is being modified or link
to a relevant issue. -->


## 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
  • Loading branch information
Danish-H committed Jan 29, 2024
1 parent d2d46c0 commit 233c0c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/builder/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion libraries/manifest-information/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 233c0c4

Please sign in to comment.