From: quasilyte Date: Mon, 19 Mar 2018 10:21:35 +0000 (+0300) Subject: strconv: make code formatting more consistent in doc.go X-Git-Tag: go1.11beta1~1173 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b3be2f4da787f1287882c40e327f79644b934a77;p=gostls13.git strconv: make code formatting more consistent in doc.go Replaces " \t" code indentation with "\t". Issues like this are easy to spot with editor that prints whitespace charecters. Change-Id: Ia82877e7c99121bf369fa76e46ba52dff84f36bf Reviewed-on: https://go-review.googlesource.com/101355 Reviewed-by: Daniel Martí Reviewed-by: Brad Fitzpatrick --- diff --git a/src/strconv/doc.go b/src/strconv/doc.go index 7bc1e27937..cba898426a 100644 --- a/src/strconv/doc.go +++ b/src/strconv/doc.go @@ -32,10 +32,10 @@ // // FormatBool, FormatFloat, FormatInt, and FormatUint convert values to strings: // -// s := strconv.FormatBool(true) -// s := strconv.FormatFloat(3.1415, 'E', -1, 64) -// s := strconv.FormatInt(-42, 16) -// s := strconv.FormatUint(42, 16) +// s := strconv.FormatBool(true) +// s := strconv.FormatFloat(3.1415, 'E', -1, 64) +// s := strconv.FormatInt(-42, 16) +// s := strconv.FormatUint(42, 16) // // AppendBool, AppendFloat, AppendInt, and AppendUint are similar but // append the formatted value to a destination slice.