From 2bd03ca72546bfc4a42551893f2d8f11f1bf6861 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Fri, 14 Jun 2019 22:54:19 +0900 Subject: Use halfwidth space instead of fullwidth space in code (#5054) --- src/games/reversi/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/games') diff --git a/src/games/reversi/core.ts b/src/games/reversi/core.ts index cf8986263b..09d23e2b70 100644 --- a/src/games/reversi/core.ts +++ b/src/games/reversi/core.ts @@ -257,7 +257,7 @@ export default class Reversi { public get winner(): Color | null { return this.isEnded ? this.blackCount == this.whiteCount ? null : - this.opts.isLlotheo === this.blackCount > this.whiteCount ? WHITE : BLACK : + this.opts.isLlotheo === this.blackCount > this.whiteCount ? WHITE : BLACK : undefined as never; } } -- cgit v1.2.3-freya