Skip to content

Commit 56d6c63

Browse files
authored
docs: corrects spelling in docs and comments
* spelling: constructor Signed-off-by: Josh Soref <[email protected]> * spelling: retrieval Signed-off-by: Josh Soref <[email protected]> * spelling: typescript Signed-off-by: Josh Soref <[email protected]> --------- Signed-off-by: Josh Soref <[email protected]>
1 parent 133d1f6 commit 56d6c63

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ Only one version number is bumped at a time, the highest version change trumps t
6666
Besides publishing a new version to npm, semantic-release also creates a git tag and release
6767
on GitHub, generates changelogs from the commit messages and puts them into the release notes.
6868

69-
Before the publish it runs the `npm run build` script which creates a `pkg/` folder with distributions for browsers, node and Typescript definitions. The contents of the `pkg/` folder are published to the npm registry.
69+
Before the publish it runs the `npm run build` script which creates a `pkg/` folder with distributions for browsers, node and TypeScript definitions. The contents of the `pkg/` folder are published to the npm registry.
7070

7171
If the pull request looks good but does not follow the commit conventions, use the <kbd>Squash & merge</kbd> button.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<!-- toc -->
1111

1212
- [Usage](#usage)
13-
- [Create custom Octokit contructor with plugin](#create-custom-octokit-contructor-with-plugin)
13+
- [Create custom Octokit constructor with plugin](#create-custom-octokit-constructor-with-plugin)
1414
- [Create or update existing file with static content](#create-or-update-existing-file-with-static-content)
1515
- [deleting a file is possible by setting content to null](#deleting-a-file-is-possible-by-setting-content-to-null)
1616
- [set content dynamically based on current content using a content function](#set-content-dynamically-based-on-current-content-using-a-content-function)
@@ -67,7 +67,7 @@ const {
6767
</tbody>
6868
</table>
6969

70-
### Create custom Octokit contructor with plugin
70+
### Create custom Octokit constructor with plugin
7171

7272
```js
7373
const MyOctokit = Octokit.plugin(createOrUpdateTextFile);

src/get-file-content.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type Result = {
2222
};
2323

2424
/**
25-
* Normalizes the retrival of a repository file content.
25+
* Normalizes the retrieval of a repository file content.
2626
*
2727
* The "Get repository content" API can respond in 4 different ways depending
2828
* on what exists at the given path

0 commit comments

Comments
 (0)