Skip to content
This repository has been archived by the owner on Aug 27, 2018. It is now read-only.

Commit

Permalink
Fix a typo on line 70 (#144)
Browse files Browse the repository at this point in the history
[FIX] Fix a typo on line 70
  • Loading branch information
Motion authored and CyberiumShadow committed Feb 23, 2017
1 parent 150df13 commit 567634a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- dataProviders renamed to Providers

### Fixed
- Fixed typo in validateData function
- Fixed Default Conf initialize. (No longer outputs undefined)
- Fixed invalid regex for prefixes in parseCommand
- Fixed validateData Booleans.
Expand Down
2 changes: 1 addition & 1 deletion functions/validateData.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module.exports = (data, properties, values) => {
case "string":
break;
default:
throw new Error("unsuported");
throw new Error("unsupported");
}
});
};

0 comments on commit 567634a

Please sign in to comment.