Skip to content

Commit

Permalink
Nit: fix missing quote in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Mar 7, 2016
1 parent ecfdb3b commit db0924a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation/rules/DefaultValuesOfCorrectType.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function badValueForDefaultArgMessage(
verboseErrors?: [string]
): string {
const message = verboseErrors ? '\n' + verboseErrors.join('\n') : '';
return `Variable "$${varName} has invalid default value ${value}.${message}`;
return `Variable "$${varName}" has invalid default value ${value}.${message}`;
}

/**
Expand Down

0 comments on commit db0924a

Please sign in to comment.