diff options
| -rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ func game(numPlayers, faces int) { // Launch a daemon to wait for the party to finish, so that we // can close the finishedPlayers channel. This has to be // non-blocking, since the range loop below is synchronized - // with the party members. + // with the party goroutines. go stopGame(&party, finishedPlayers) minPlayer := Player{score: math.MaxInt} |
