From: Jeremy Schlatter Date: Wed, 11 Apr 2018 03:22:59 +0000 (+0000) Subject: doc: switch from spaces to tabs for indentation in example code X-Git-Tag: go1.11beta1~885 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=338ac2af6f8ec2a0db6dc51552be4d59a3978e01;p=gostls13.git doc: switch from spaces to tabs for indentation in example code This is the standard that gofmt uses. Change-Id: I30e70611ccd0d3bbaa500fa84e9d1ba75970f0bc GitHub-Last-Rev: b2b7af0df9759ad447b6fd3551ea356804d136b2 GitHub-Pull-Request: golang/go#24802 Reviewed-on: https://go-review.googlesource.com/106123 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/install-source.html b/doc/install-source.html index 4ed9487504..1928b0ba9b 100644 --- a/doc/install-source.html +++ b/doc/install-source.html @@ -307,7 +307,7 @@ package main import "fmt" func main() { - fmt.Printf("hello, world\n") + fmt.Printf("hello, world\n") } diff --git a/doc/install.html b/doc/install.html index 79ae9664c8..cd9abcc57d 100644 --- a/doc/install.html +++ b/doc/install.html @@ -242,7 +242,7 @@ package main import "fmt" func main() { - fmt.Printf("hello, world\n") + fmt.Printf("hello, world\n") }