1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-19 05:25:45 +02:00

Use halfwidth space instead of fullwidth space in code (#5054)

This commit is contained in:
Aya Morisawa
2019-06-14 22:54:19 +09:00
committed by syuilo
parent 67dda01fcb
commit 2bd03ca725
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}
}