2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Fixing typo in comment blocks of createError() and enhanceError() functions (#857)

This commit is contained in:
Martin Joiner
2017-05-28 21:03:40 +01:00
committed by Rubén Norte
parent f31317aeca
commit 1beb245f3a
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ var enhanceError = require('./enhanceError');
* @param {string} message The error message.
* @param {Object} config The config.
* @param {string} [code] The error code (for example, 'ECONNABORTED').
@ @param {Object} [request] The request.
@ @param {Object} [response] The response.
* @param {Object} [request] The request.
* @param {Object} [response] The response.
* @returns {Error} The created error.
*/
module.exports = function createError(message, config, code, request, response) {