From 8d5ab908fcee1fa5e9dd68eaa13b885d35a2f0a0 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Sun, 6 Jan 2019 15:00:05 +0000 Subject: [PATCH] ci: add a change --- tools/ts-api-guardian/lib/serializer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ts-api-guardian/lib/serializer.ts b/tools/ts-api-guardian/lib/serializer.ts index f575a96373..9bef9a662d 100644 --- a/tools/ts-api-guardian/lib/serializer.ts +++ b/tools/ts-api-guardian/lib/serializer.ts @@ -112,7 +112,7 @@ class ResolvedDeclarationEmitter { emit(): string { const sourceFile = this.program.getSourceFiles().find(sf => sf.fileName === this.fileName); if (!sourceFile) { - throw new Error(`Source file "${this.fileName}" not found`); + throw new Error(`Source file "${this.fileName}" not found `); } let output: string[] = []; @@ -441,4 +441,4 @@ function applyDefaultTagOptions(tagOptions: JsDocTagOptions | undefined): JsDocT function getName(node: any) { return '`' + (node.name && node.name.text ? node.name.text : node.getText()) + '`'; -} \ No newline at end of file +}