diff --git a/zh/02.6.md b/zh/02.6.md index 5685cc91e..ce22fd130 100644 --- a/zh/02.6.md +++ b/zh/02.6.md @@ -326,7 +326,7 @@ fmt.Println("The biggest one is", boxes.BiggestsColor()) case Person: fmt.Printf("list[%d] is a Person and its value is %s\n", index, value) default: - fmt.Println("list[%d] is of a different type", index) + fmt.Printf("list[%d] is of a different type", index) } } }