Skip to content

Commit 99f80d0

Browse files
rscgopherbot
authored andcommitted
all: gofmt
Gofmt to update doc comments to the new formatting. For golang/go#51082. Change-Id: Iae65e4d8854b66205e4cbcdd1ae0eec48c582496 Reviewed-on: https://go-review.googlesource.com/c/image/+/399615 Run-TryBot: Russ Cox <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Russ Cox <[email protected]>
1 parent a8550c1 commit 99f80d0

File tree

11 files changed

+469
-459
lines changed

11 files changed

+469
-459
lines changed

ccitt/gen.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,9 @@ func writeComment(w *bytes.Buffer, n *node, prefix string, down bool) {
224224
writeComment(w, n.children[0], prefixUp, false)
225225
defer writeComment(w, n.children[1], prefixDown, true)
226226

227-
fmt.Fprintf(w, "// b%03d ", n.branchIndex)
227+
fmt.Fprintf(w, "//\tb%03d ", n.branchIndex)
228228
} else {
229-
fmt.Fprintf(w, "// ")
229+
fmt.Fprintf(w, "//\t ")
230230
}
231231

232232
w.WriteString(prefix[:len(prefix)-2])

0 commit comments

Comments
 (0)