Skip to content

Commit

Permalink
Correct the error message. (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
fireqong authored and kannappanr committed Dec 26, 2019
1 parent fe84e64 commit 518e5a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/minio.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export class Client {
throw new errors.InvalidArgumentError('Input appName cannot be empty.')
}
if (!isString(appVersion)) {
throw new TypeError(`Invalid appName: ${appVersion}`)
throw new TypeError(`Invalid appVersion: ${appVersion}`)
}
if (appVersion.trim() === '') {
throw new errors.InvalidArgumentError('Input appVersion cannot be empty.')
Expand Down

0 comments on commit 518e5a8

Please sign in to comment.