Skip to content

Commit

Permalink
chore: fix spelling of GitHub in badge descriptions (#10199)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtools committed May 26, 2024
1 parent 8ca5682 commit e43cb0c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ServiceTester } from '../../tester.js'

export const t = new ServiceTester({
id: 'GistLastCommitRedirect',
title: 'Github Gist Last Commit Redirect',
title: 'GitHub Gist Last Commit Redirect',
pathPrefix: '/github-gist',
})

Expand Down
2 changes: 1 addition & 1 deletion services/github/gist/github-gist-stars.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class GistStars extends GithubAuthV4Service {
static openApi = {
'/github/gist/stars/{gistId}': {
get: {
summary: 'Github Gist stars',
summary: 'GitHub Gist stars',
description,
parameters: pathParams({
name: 'gistId',
Expand Down
2 changes: 1 addition & 1 deletion services/github/github-api-provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class GithubApiProvider {
} catch (e) {
log.error(e)
throw new ImproperlyConfigured({
prettyMessage: 'Unable to select next Github token from pool',
prettyMessage: 'Unable to select next GitHub token from pool',
})
}
tokenString = token.id
Expand Down
2 changes: 1 addition & 1 deletion services/github/github-created-at.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class GithubCreatedAt extends GithubAuthV3Service {
static openApi = {
'/github/created-at/{user}/{repo}': {
get: {
summary: 'Github Created At',
summary: 'GitHub Created At',
description: documentation,
parameters: pathParams(
{
Expand Down
4 changes: 2 additions & 2 deletions services/github/github-lerna-json.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class GithubLernaJson extends ConditionalGithubAuthV3Service {
static openApi = {
'/github/lerna-json/v/{user}/{repo}': {
get: {
summary: 'Github lerna version',
summary: 'GitHub lerna version',
description: documentation,
parameters: pathParams(
{
Expand All @@ -36,7 +36,7 @@ export default class GithubLernaJson extends ConditionalGithubAuthV3Service {
},
'/github/lerna-json/v/{user}/{repo}/{branch}': {
get: {
summary: 'Github lerna version (branch)',
summary: 'GitHub lerna version (branch)',
description: documentation,
parameters: pathParams(
{
Expand Down
4 changes: 2 additions & 2 deletions services/scrutinizer/scrutinizer-build.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ScrutinizerBuild extends ScrutinizerBuildBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand All @@ -62,7 +62,7 @@ class ScrutinizerBuild extends ScrutinizerBuildBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand Down
4 changes: 2 additions & 2 deletions services/scrutinizer/scrutinizer-coverage.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ScrutinizerCoverage extends ScrutinizerCoverageBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand All @@ -93,7 +93,7 @@ class ScrutinizerCoverage extends ScrutinizerCoverageBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand Down
4 changes: 2 additions & 2 deletions services/scrutinizer/scrutinizer-quality.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class ScrutinizerQuality extends ScrutinizerQualityBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand All @@ -82,7 +82,7 @@ class ScrutinizerQuality extends ScrutinizerQualityBase {
{
name: 'vcs',
example: 'g',
description: 'Platform: Either Github or Bitbucket',
description: 'Platform: Either GitHub or Bitbucket',
schema: { type: 'string', enum: this.getEnum('vcs') },
},
{ name: 'user', example: 'filp' },
Expand Down

0 comments on commit e43cb0c

Please sign in to comment.