From 2c397c7a753963494ce5dd5d7eda471354074698 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Sat, 18 Mar 2017 19:44:37 +0000 Subject: [PATCH] cmd/gofmt: unindent the second line of a BUG note Currently, this second line is treated a pre-formatted text as it's indented relatively to the BUG() line. The current state can be seen at: https://golang.org/cmd/gofmt/#pkg-note-BUG Unindenting makes the rest of the sentence part of the same paragraph. Change-Id: I6dee55c9c321b1a03b41c7124c6a1ea15772c878 Reviewed-on: https://go-review.googlesource.com/38353 Reviewed-by: Brad Fitzpatrick --- src/cmd/gofmt/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/gofmt/doc.go b/src/cmd/gofmt/doc.go index 8b22f03f65..a552d4cde4 100644 --- a/src/cmd/gofmt/doc.go +++ b/src/cmd/gofmt/doc.go @@ -100,4 +100,4 @@ package main // BUG(rsc): The implementation of -r is a bit slow. // BUG(gri): If -w fails, the restored original file may not have some of the -// original file attributes. +// original file attributes. -- 2.50.0