ch9: fix code format

This commit is contained in:
chai2010
2016-01-21 10:44:23 +08:00
parent b1730821fe
commit e29d0da705
6 changed files with 66 additions and 66 deletions

View File

@@ -9,12 +9,12 @@
```go
var x, y int
go func() {
x = 1 // A1
fmt.Print("y:", y, " ") // A2
x = 1 // A1
fmt.Print("y:", y, " ") // A2
}()
go func() {
y = 1 // B1
fmt.Print("x:", x, " ") // B2
y = 1 // B1
fmt.Print("x:", x, " ") // B2
}()
```