Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kaorahi committed Oct 14, 2024
1 parent 2c4245e commit 2f41ef0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1068,8 +1068,8 @@ function ask_auto_play_sec(win, replaying) {
const mismatched_komi = !replaying && AI.different_komi_for_black_and_white()
const warning = mismatched_komi ? '(Different komi for black & white?) ' : ''
const label = 'Auto play seconds:'
const cannel = replaying ? 'submit_auto_replay' : 'submit_auto_play'
generic_input_dialog(win, label, default_auto_play_sec, cannel, warning)
const channel = replaying ? 'submit_auto_replay' : 'submit_auto_play'
generic_input_dialog(win, label, default_auto_play_sec, channel, warning)
}
function submit_auto_play_or_replay(sec, replaying) {
const strategy = replaying ? 'replay' : default_strategy()
Expand Down

0 comments on commit 2f41ef0

Please sign in to comment.