Skip to content

Commit

Permalink
Fix typos in comments (#5102)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrimaud authored May 19, 2020
1 parent 2ff6d15 commit 8ceb4f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ rules:
# allow Joi as an undefined type
jsdoc/no-undefined-types: ['error', { definedTypes: ['Joi'] }]

# all the other reccomended rules as errors (not warnings)
# all the other recommended rules as errors (not warnings)
jsdoc/check-alignment: 'error'
jsdoc/check-param-names: 'error'
jsdoc/check-tag-names: 'error'
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const got = require('./core/got-test-client')
let server
before(function () {
this.timeout('5s')
// remove args comming from mocha
// remove args coming from mocha
// https://github.com/badges/shields/issues/3365
process.argv = []
server = require('./server')
Expand Down
4 changes: 2 additions & 2 deletions services/dynamic/dynamic-xml.tester.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ t.create('query with node function')
color: 'blue',
})

t.create('query with type convertion to string')
t.create('query with type conversion to string')
.get(
`.json?${queryString.stringify({
url: exampleUrl,
Expand All @@ -203,7 +203,7 @@ t.create('query with type convertion to string')
color: 'blue',
})

t.create('query with type convertion to number')
t.create('query with type conversion to number')
.get(
`.json?${queryString.stringify({
url: exampleUrl,
Expand Down
2 changes: 1 addition & 1 deletion services/nuget/nuget-v3-service-family.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const schema = Joi.object({
/*
* Strip Build MetaData
* Nuget versions may include an optional "build metadata" clause,
* seperated from the version by a + character.
* separated from the version by a + character.
*/
function stripBuildMetadata(version) {
return version.split('+')[0]
Expand Down

0 comments on commit 8ceb4f2

Please sign in to comment.