Skip to content

Commit

Permalink
fix(config): misnamed variable causing errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
hansl authored Aug 25, 2016
1 parent d17bc71 commit e9ea554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/ng2/models/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class CliConfig<Config> {
try {
content = JSON.parse(configContent);
schema = JSON.parse(schemaContent);
others = otherContents.map(content => JSON.parse(otherContent));
others = otherContents.map(otherContent => JSON.parse(otherContent));
} catch (err) {
throw new InvalidConfigError(err);
}
Expand Down

0 comments on commit e9ea554

Please sign in to comment.