Merge pull request #158 from skiy/master

update
This commit is contained in:
无闻
2015-10-24 11:37:42 -04:00
3 changed files with 2 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ func main() {
但是如果你想要一个排序的列表你最好使用结构体切片,这样会更有效: 但是如果你想要一个排序的列表你最好使用结构体切片,这样会更有效:
```go ```go
type struct { type name struct {
key string key string
value int value int
} }

View File

@@ -26,7 +26,6 @@ func main() {
for k, v := range invMap { for k, v := range invMap {
fmt.Printf("Key: %v, Value: %v / ", k, v) fmt.Printf("Key: %v, Value: %v / ", k, v)
} }
fmt.Println()
} }
``` ```