From d4c9e7cb2c0cebf36cb6d2bb4ff1258943e508cf Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:37:35 -0500 Subject: [PATCH 1/4] spelling: httpm Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- __tests__/setup-go.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/setup-go.test.ts b/__tests__/setup-go.test.ts index f94f9eebe..eca15281d 100644 --- a/__tests__/setup-go.test.ts +++ b/__tests__/setup-go.test.ts @@ -92,7 +92,7 @@ describe('setup-go', () => { getManifestSpy = jest.spyOn(tc, 'getManifestFromRepo'); getAllVersionsSpy = jest.spyOn(im, 'getManifest'); - // httm + // httpm httpmGetJsonSpy = jest.spyOn(httpm.HttpClient.prototype, 'getJson'); // io From 2c2977fbc8864172c69f301235e819f4a0ac5b0a Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:38:07 -0500 Subject: [PATCH 2/4] spelling: macos Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- __tests__/setup-go.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/setup-go.test.ts b/__tests__/setup-go.test.ts index eca15281d..3d59611a3 100644 --- a/__tests__/setup-go.test.ts +++ b/__tests__/setup-go.test.ts @@ -143,7 +143,7 @@ describe('setup-go', () => { expect(main.parseGoVersion(goVersionOutput)).toBe('1.16.6'); }); - it('can find 1.9.7 from manifest on osx', async () => { + it('can find 1.9.7 from manifest on macOS', async () => { os.platform = 'darwin'; os.arch = 'x64'; From 4b7aaecd5cad52f1ccc21614ca563f2b356556c9 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:37:46 -0500 Subject: [PATCH 3/4] spelling: occurred Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- __tests__/cache-restore.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/cache-restore.test.ts b/__tests__/cache-restore.test.ts index 07dc97aef..119c81c9d 100644 --- a/__tests__/cache-restore.test.ts +++ b/__tests__/cache-restore.test.ts @@ -51,7 +51,7 @@ describe('restoreCache', () => { ); }); - it('should inform if cache hit is not occured', async () => { + it('should inform if cache hit is not occurred', async () => { //Arrange hashFilesSpy.mockImplementation((somePath: string) => { return new Promise(resolve => { @@ -74,7 +74,7 @@ describe('restoreCache', () => { expect(infoSpy).toHaveBeenCalledWith(`Cache is not found`); }); - it('should set output if cache hit is occured', async () => { + it('should set output if cache hit is occurred', async () => { //Arrange hashFilesSpy.mockImplementation((somePath: string) => { return new Promise(resolve => { From 98cae64d4a720e872b9162ca10c916117867dbd2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:38:36 -0500 Subject: [PATCH 4/4] spelling: spell checker Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/contributors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors.md b/docs/contributors.md index 43412122e..fa89ac1cc 100644 --- a/docs/contributors.md +++ b/docs/contributors.md @@ -27,7 +27,7 @@ Pull requests are the easiest way to contribute changes to git repos at GitHub. - Please check that no one else has already created a pull request with these changes - Use a "feature branch" for your changes. That separates the changes in the pull request from your other changes and makes it easy to edit/amend commits in the pull request - Make sure your changes are formatted correctly and consistently with the rest of the documentation -- Re-read what you wrote, and run a spellchecker on it to make sure you didn't miss anything +- Re-read what you wrote, and run a spell checker on it to make sure you didn't miss anything - If your pull request is connected to an open issue, please, leave a link to this issue in the `Related issue:` section - If you later need to add new commits to the pull request, you can simply commit the changes to the local branch and then push them. The pull request gets automatically updated