Skip to content

Commit

Permalink
Use halfwidth space instead of fullwidth space in code (#5054)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyaMorisawa authored and syuilo committed Jun 14, 2019
1 parent 67dda01 commit 2bd03ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/games/reversi/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
2 changes: 1 addition & 1 deletion src/services/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default class Logger {
}
}

public warn(message: string, data?: Record<string, any> | null, important = false): void { // 実行を継続できるが改善すべき状況で使う
public warn(message: string, data?: Record<string, any> | null, important = false): void { // 実行を継続できるが改善すべき状況で使う
this.log('warning', message, data, important);
}

Expand Down

0 comments on commit 2bd03ca

Please sign in to comment.