Skip to content

Commit

Permalink
Remove superfluous " in error message.
Browse files Browse the repository at this point in the history
Just a minor correction in the error message. It caused me to triple check my own spelling of the theme name before realizing where the extra " came from.
  • Loading branch information
jakobloekke authored Sep 26, 2016
1 parent d67f1d3 commit 365812a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/custom-semantic-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ customSemanticData.requiredThemesNames = function() {

customSemanticData.validate = function(definitionsData, themesData) {
var throwError = function(name) {
throw new Error('definition/theme "' + name + '"" does not exist. Please update your custom.semantic.json file.');
throw new Error('definition/theme "' + name + '" does not exist. Please update your custom.semantic.json file.');
};
_.each(_.keys(this.data.definitions), function(definitionName) {
if (!definitionsData.exists(definitionName)) {
Expand Down

0 comments on commit 365812a

Please sign in to comment.