Fix slight logical mistake in a comment.

master
Icedream 2020-12-05 10:57:37 +01:00
parent 319542b6aa
commit a4e13c8f36
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func main() {
seatID := seat.ID()
seats[seatID] = seat
}
// skip row 1 and row 127
// skip row 0 and row 127
for seatID := 8; seatID < (128-1)*8; seatID++ {
// has ID + 1 and ID - 1?
if _, exists := seats[seatID]; !exists {