From 9874db78410764958cc5263ef21cbe94fcc8883c Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Fri, 13 Oct 2023 10:40:57 -0500 Subject: [PATCH] Fix several typos (#9658) --- badge-maker/lib/xml.js | 2 +- core/base-service/base-graphql.js | 4 ++-- core/base-service/base-json.js | 2 +- core/base-service/base.spec.js | 2 +- core/base-service/openapi.js | 4 ++-- services/github/github-directory-file-count.spec.js | 6 +++--- services/packagist/packagist-license.tester.js | 2 +- services/pypi/pypi-version.tester.js | 2 +- services/static-badge/static-badge.service.js | 6 +++--- services/website-status.js | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/badge-maker/lib/xml.js b/badge-maker/lib/xml.js index 3e0ead1c56..10b8a89944 100644 --- a/badge-maker/lib/xml.js +++ b/badge-maker/lib/xml.js @@ -35,7 +35,7 @@ class XmlElement { * Name of the XML tag * @param {Array.} [attrs.content=[]] * Array of objects to render inside the tag. content may contain a mix of - * string and XmlElement objects. If content is `[]` or ommitted the + * string and XmlElement objects. If content is `[]` or omitted the * element will be rendered as a self-closing element. * @param {object} [attrs.attrs={}] * Object representing the tag's attributes as name/value pairs diff --git a/core/base-service/base-graphql.js b/core/base-service/base-graphql.js index c63ac6ac36..d70dbe96ca 100644 --- a/core/base-service/base-graphql.js +++ b/core/base-service/base-graphql.js @@ -20,7 +20,7 @@ class BaseGraphqlService extends BaseService { /** * Parse data from JSON endpoint * - * @param {string} buffer JSON repsonse from upstream API + * @param {string} buffer JSON response from upstream API * @returns {object} Parsed response */ _parseJson(buffer) { @@ -51,7 +51,7 @@ class BaseGraphqlService extends BaseService { * for allowed keys * and {@link module:core/base-service/errors~RuntimeErrorProps} for allowed values * @param {Function} [attrs.transformJson=data => data] Function which takes the raw json and transforms it before - * further procesing. In case of multiple query in a single graphql call and few of them + * further processing. In case of multiple query in a single graphql call and few of them * throw error, partial data might be used ignoring the error. * @param {Function} [attrs.transformErrors=defaultTransformErrors] * Function which takes an errors object from a GraphQL diff --git a/core/base-service/base-json.js b/core/base-service/base-json.js index fe42783bd3..075ea561b4 100644 --- a/core/base-service/base-json.js +++ b/core/base-service/base-json.js @@ -14,7 +14,7 @@ class BaseJsonService extends BaseService { /** * Parse data from JSON endpoint * - * @param {string} buffer JSON repsonse from upstream API + * @param {string} buffer JSON response from upstream API * @returns {object} Parsed response */ _parseJson(buffer) { diff --git a/core/base-service/base.spec.js b/core/base-service/base.spec.js index dbd096e600..0fda208a70 100644 --- a/core/base-service/base.spec.js +++ b/core/base-service/base.spec.js @@ -322,7 +322,7 @@ describe('BaseService', function () { }) describe('ScoutCamp integration', function () { - // TODO Strangly, without the useless escape the regexes do not match in Node 12. + // TODO Strangely, without the useless escape the regexes do not match in Node 12. // eslint-disable-next-line no-useless-escape const expectedRouteRegex = /^\/foo(?:\/([^\/#\?]+?))(|\.svg|\.json)$/ diff --git a/core/base-service/openapi.js b/core/base-service/openapi.js index d32eead5da..c45d438f70 100644 --- a/core/base-service/openapi.js +++ b/core/base-service/openapi.js @@ -363,7 +363,7 @@ function pathParam({ * { name: 'name2', example: 'example2' }, * ) * ``` - * is equivilent to + * is equivalent to * ``` * const params = [ * pathParam({ name: 'name1', example: 'example1' }), @@ -409,7 +409,7 @@ function queryParam({ * { name: 'name2', example: 'example2' }, * ) * ``` - * is equivilent to + * is equivalent to * ``` * const params = [ * queryParam({ name: 'name1', example: 'example1' }), diff --git a/services/github/github-directory-file-count.spec.js b/services/github/github-directory-file-count.spec.js index 112ceff6e0..17c3afdd07 100644 --- a/services/github/github-directory-file-count.spec.js +++ b/services/github/github-directory-file-count.spec.js @@ -32,13 +32,13 @@ describe('GithubDirectoryFileCount', function () { }) }) - it('throws InvalidParameter on receving an object as contents instead of an array', function () { + it('throws InvalidParameter on receiving an object as contents instead of an array', function () { expect(() => GithubDirectoryFileCount.transform({}, {})) .to.throw(InvalidParameter) .with.property('prettyMessage', 'not a directory') }) - it('throws InvalidParameter on receving type dir and extension', function () { + it('throws InvalidParameter on receiving type dir and extension', function () { expect(() => GithubDirectoryFileCount.transform(contents, { type: 'dir', @@ -52,7 +52,7 @@ describe('GithubDirectoryFileCount', function () { ) }) - it('throws InvalidParameter on receving no type and extension', function () { + it('throws InvalidParameter on receiving no type and extension', function () { expect(() => GithubDirectoryFileCount.transform(contents, { extension: 'js' }), ) diff --git a/services/packagist/packagist-license.tester.js b/services/packagist/packagist-license.tester.js index a9f3ef370b..e43a5bf3d9 100644 --- a/services/packagist/packagist-license.tester.js +++ b/services/packagist/packagist-license.tester.js @@ -6,7 +6,7 @@ t.create('license (valid)') .expectBadge({ label: 'license', message: 'MIT' }) // note: packagist does serve up license at the version level -// but our endpoint only supports fetching license for the lastest version +// but our endpoint only supports fetching license for the latest version t.create('license (invalid, package version in request)') .get('/symfony/symfony/v2.8.0.json') .expectBadge({ label: '404', message: 'badge not found' }) diff --git a/services/pypi/pypi-version.tester.js b/services/pypi/pypi-version.tester.js index d2b9c1c541..17059084dc 100644 --- a/services/pypi/pypi-version.tester.js +++ b/services/pypi/pypi-version.tester.js @@ -22,7 +22,7 @@ t.create('version (semver)').get('/requests.json').expectBadge({ message: isSemver, }) -// ..whereas this project does not folow SemVer +// ..whereas this project does not follow SemVer t.create('version (not semver)').get('/psycopg2.json').expectBadge({ label: 'pypi', message: isPsycopg2Version, diff --git a/services/static-badge/static-badge.service.js b/services/static-badge/static-badge.service.js index 257cdb6260..ba65e07092 100644 --- a/services/static-badge/static-badge.service.js +++ b/services/static-badge/static-badge.service.js @@ -6,12 +6,12 @@ const description = `