From b3be2f4da787f1287882c40e327f79644b934a77 Mon Sep 17 00:00:00 2001 From: quasilyte Date: Mon, 19 Mar 2018 13:21:35 +0300 Subject: [PATCH] strconv: make code formatting more consistent in doc.go MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/strconv/doc.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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. -- 2.50.0