From 8f7f79a1bfcc6c7c19e7256b0909acb058600709 Mon Sep 17 00:00:00 2001 From: seanjs Date: Sat, 19 Jan 2019 19:11:32 -0500 Subject: [PATCH] Realign a wrong indentation. (#28425) --- guide/english/go/functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/go/functions/index.md b/guide/english/go/functions/index.md index 71d9171530..b37e7a885f 100644 --- a/guide/english/go/functions/index.md +++ b/guide/english/go/functions/index.md @@ -80,7 +80,7 @@ func duplicate(s string) (first, second string) { } func main() { - fmt.Println(split("Hello world!")) // ("Hello world!", "Hello world!") + fmt.Println(split("Hello world!")) // ("Hello world!", "Hello world!") } ```