mirror of
https://github.com/golang/go
synced 2024-11-02 08:01:26 +00:00
doc/play: use []rune insetead of []int.
R=golang-dev CC=golang-dev https://golang.org/cl/5823058
This commit is contained in:
parent
d528f52d87
commit
aec01c3627
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ const N = 11 + 1 // length of a row (+1 for \n)
|
|||
// Periods represent illegal fields,
|
||||
// ● are pegs, and ○ are holes.
|
||||
|
||||
var board = []int(
|
||||
var board = []rune(
|
||||
`...........
|
||||
...........
|
||||
....●●●....
|
||||
|
|
Loading…
Reference in a new issue