Skip to content

Commit

Permalink
fixes misspells across the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
adrijshikhar committed Feb 23, 2020
1 parent 38bb6d2 commit bfdedcd
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Thumbs.db
# =======
# Configuration pertaining to project specific repository structure.

# - Prevent Sublime text IDE files from being commited to repository
# - Prevent Sublime text IDE files from being committed to repository
*.sublime-*

# - Allow sublime text project file to be commited in the development directory.
# - Allow sublime text project file to be committed in the development directory.
!/develop/*.sublime-project

# - Prevent CI output files from being Added
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Thumbs.db
# =======
# Configuration pertaining to project specific repository structure.

# - Prevent Sublime text IDE files from being commited to repository
# - Prevent Sublime text IDE files from being committed to repository
*.sublime-*

# - Allow sublime text project file to be commited in the development directory.
# - Allow sublime text project file to be committed in the development directory.
!/develop/*.sublime-project

# - Prevent CI output files from being Added
Expand Down
4 changes: 2 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Thumbs.db
# =======
# Configuration pertaining to project specific repository structure.

# - Prevent Sublime text IDE files from being commited to repository
# - Prevent Sublime text IDE files from being committed to repository
*.sublime-*

# - Allow sublime text project file to be commited in the development directory.
# - Allow sublime text project file to be committed in the development directory.
!/develop/*.sublime-project

# - Prevent CI output files from being Added
Expand Down
2 changes: 1 addition & 1 deletion lib/reporters/cli/cli-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ cliUtils = {
/**
* A CLI utility helper method to compute and scae the size of the CLI table to be displayed.
*
* @returns {Object} - A set of properties: width, height, and TTY existance.
* @returns {Object} - A set of properties: width, height, and TTY existence.
*/
dimension: function () {
var tty,
Expand Down
2 changes: 1 addition & 1 deletion lib/run/export-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var fs = require('fs'),
/**
* Generate a timestamp from date
*
* @param {Date=} date - The timestmap used to mark the exported file.
* @param {Date=} date - The timestamp used to mark the exported file.
* @param {String=} separator - The optional string with which to separate different sections of the timestamp,
* defaults to TS_SEP
* @returns {String} - yyyy-mm-dd-HH-MM-SS-MS-0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"listen": "test",
"script": {
"type": "text/javascript",
"exec": "console.log(environment);console.log(globals);var data = JSON.parse(responseBody);\ntests[\"Variable substitution from env not working after clearing invididually\"] = (data.args.a===\"{{e}}\");\ntests[\"Variable substitution from global not working after clearing invididually\"] = (data.args.b===\"{{g}}\");"
"exec": "console.log(environment);console.log(globals);var data = JSON.parse(responseBody);\ntests[\"Variable substitution from env not working after clearing individually\"] = (data.args.a===\"{{e}}\");\ntests[\"Variable substitution from global not working after clearing individually\"] = (data.args.b===\"{{g}}\");"
}
}
],
Expand Down
6 changes: 3 additions & 3 deletions test/integration/echo-v2.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@
"mode": "formdata",
"formdata": []
},
"description": "This endpoint allows one to recieve streaming http response using [chunked transfer encoding](https://en.wikipedia.org/wiki/Chunked_transfer_encoding) of a configurable length.\n\nA streaming response does not wait for the entire response to be generated on server before flushing it out. This implies that for a fairly large response, parts of it can be streamed to the requestee as and when it is generated on server. The client can then take actions of processing this partially received data."
"description": "This endpoint allows one to receive streaming http response using [chunked transfer encoding](https://en.wikipedia.org/wiki/Chunked_transfer_encoding) of a configurable length.\n\nA streaming response does not wait for the entire response to be generated on server before flushing it out. This implies that for a fairly large response, parts of it can be streamed to the requestee as and when it is generated on server. The client can then take actions of processing this partially received data."
},
"response": []
},
Expand Down Expand Up @@ -1209,7 +1209,7 @@
}
]
},
"description": "This endpoint returns the response using [gzip compression algoritm](https://en.wikipedia.org/wiki/Gzip).\nThe uncompressed response is a JSON string containing the details of the request sent by the client. For this endpoint to work, one should request with `Accept-encoding` header containing `gzip` as part of its value. Postman supports gzip, deflate and SDCH decoding and automatically sends them as part of the request.\n\nHTTP Compression allows the server to send responses in a compressed format, which is uncompressed by the client before processing. This reduces network bandwidth consumption at the cost of increase in CPU usage.\nTo know more about this, refer the [HTTP Compression](https://en.wikipedia.org/wiki/HTTP_compression) wikipedia article."
"description": "This endpoint returns the response using [gzip compression algorithm](https://en.wikipedia.org/wiki/Gzip).\nThe uncompressed response is a JSON string containing the details of the request sent by the client. For this endpoint to work, one should request with `Accept-encoding` header containing `gzip` as part of its value. Postman supports gzip, deflate and SDCH decoding and automatically sends them as part of the request.\n\nHTTP Compression allows the server to send responses in a compressed format, which is uncompressed by the client before processing. This reduces network bandwidth consumption at the cost of increase in CPU usage.\nTo know more about this, refer the [HTTP Compression](https://en.wikipedia.org/wiki/HTTP_compression) wikipedia article."
},
"response": []
},
Expand All @@ -1233,7 +1233,7 @@
"mode": "formdata",
"formdata": []
},
"description": "This endpoint returns the response using [deflate compression algoritm](https://en.wikipedia.org/wiki/DEFLATE). \nThe uncompressed response is a JSON string containing the details of the request sent by the client. For this endpoint to work, one should request with `Accept-encoding` header containing `deflate` as part of its value. Postman supports gzip, deflate and SDCH decoding and automatically sends them as part of the request.\n\nHTTP Compression allows the server to send responses in a compressed format, which is uncompressed by the client before processing. This reduces network bandwidth consumption at the cost of increase in CPU usage.\nTo know more about this, refer the [HTTP Compression](https://en.wikipedia.org/wiki/HTTP_compression) wikipedia article."
"description": "This endpoint returns the response using [deflate compression algorithm](https://en.wikipedia.org/wiki/DEFLATE). \nThe uncompressed response is a JSON string containing the details of the request sent by the client. For this endpoint to work, one should request with `Accept-encoding` header containing `deflate` as part of its value. Postman supports gzip, deflate and SDCH decoding and automatically sends them as part of the request.\n\nHTTP Compression allows the server to send responses in a compressed format, which is uncompressed by the client before processing. This reduces network bandwidth consumption at the cost of increase in CPU usage.\nTo know more about this, refer the [HTTP Compression](https://en.wikipedia.org/wiki/HTTP_compression) wikipedia article."
},
"response": []
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"item": [
{
"name": "Prelimiary request",
"name": "Preliminary request",
"event": [
{
"listen": "test",
Expand Down
2 changes: 1 addition & 1 deletion test/system/jsdoc-config.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('JSDoc configuration', function () {
});

describe('tags', function () {
it('should allow unkown tags', function () {
it('should allow unknown tags', function () {
expect(json.tags.allowUnknownTags).to.be.ok;
});

Expand Down

0 comments on commit bfdedcd

Please sign in to comment.