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

[FIX] Fix a typo on line 70 #144

Merged
merged 3 commits into from
Feb 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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");
}
});
};