From 37ffcf2b9d58ff352e5dd6a095d414b0b2e57dc2 Mon Sep 17 00:00:00 2001 From: justjavac Date: Thu, 13 Dec 2018 10:38:28 +0800 Subject: [PATCH] fix format --- js/console.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/console.ts b/js/console.ts index 91a90bbae6d124..c66165d6dd2cbc 100644 --- a/js/console.ts +++ b/js/console.ts @@ -383,7 +383,7 @@ export class Console { /** Writes an error message to stdout if the assertion is `false`. If the * assertion is `true`, nothing happens. - * + * * ref: https://console.spec.whatwg.org/#assert */ // tslint:disable-next-line:no-any @@ -393,7 +393,7 @@ export class Console { } if (args.length === 0) { - this.error("Assertion failed") + this.error("Assertion failed"); return; }