chore(router): fix formatting

This commit is contained in:
Brian Ford 2015-07-15 11:10:39 -07:00
parent 9d66b5b09e
commit b26f99787e
1 changed files with 2 additions and 1 deletions

View File

@ -174,7 +174,8 @@ export class RouteRegistry {
var componentRecognizer = this._rules.get(componentCursor);
if (isBlank(componentRecognizer)) {
throw new BaseException(`Component "${getTypeNameForDebugging(componentCursor)}" has no route config.`);
throw new BaseException(
`Component "${getTypeNameForDebugging(componentCursor)}" has no route config.`);
}
var response = componentRecognizer.generate(segment, params);
if (isBlank(response)) {