summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2f524c1..795f227 100644
--- a/main.go
+++ b/main.go
@@ -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}