Skip to content

Commit

Permalink
Remove a double quote in the require error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bwtimm committed Aug 17, 2017
1 parent 68db04a commit 9ab3a1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/handler.js
Expand Up @@ -90,7 +90,7 @@ function getMatchFn(methodSchema) {
if (!arg.optional) {
throw {
message: errors.MISSING_ARG,
details: `Required argument "${arg.name}"" missing.`,
details: `Required argument "${arg.name}" missing.`,
};
}
passed = arg.default;
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "swatchjs",
"version": "1.0.0",
"version": "1.0.1",
"description": "Framework for easily creating and exposing APIs as methods",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit 9ab3a1c

Please sign in to comment.