diff options
author | Rob Pike <r@golang.org> | 2014-08-25 18:26:25 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2014-08-25 18:26:25 -0700 |
commit | f6ff936b5658c179ebcfdcd53609c7f675c70a76 (patch) | |
tree | 2065d5df31bdffb656f6eb1cb39af48eba5d6f75 | |
parent | ceaf041f7c9754ff902f0c00b0a8b70203f9d47e (diff) |
go.blog/constants: use a format with Printf
Otherwise the prose around this snippet is confusing.
LGTM=adg
R=adg
CC=golang-codereviews
https://golang.org/cl/130550043
-rw-r--r-- | content/constants/default1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/constants/default1.go b/content/constants/default1.go index 914e4b7..0f7909c 100644 --- a/content/constants/default1.go +++ b/content/constants/default1.go @@ -6,6 +6,6 @@ import "fmt" func main() { // START OMIT - fmt.Printf("Hello, 世界") + fmt.Printf("%s", "Hello, 世界") // STOP OMIT } |