From: Russ Cox Date: Fri, 25 Feb 2011 19:40:36 +0000 (-0500) Subject: sync/atomic: make BUG comment godoc-compatible X-Git-Tag: weekly.2011-03-07~80 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c833d2fd941c12a2f48fe10837584fe751353b1e;p=gostls13.git sync/atomic: make BUG comment godoc-compatible go/doc wants to see text after BUG(uid): on the same line in order to treat it as an official bug comment. R=gri CC=golang-dev https://golang.org/cl/4250043 --- diff --git a/src/pkg/sync/atomic/doc.go b/src/pkg/sync/atomic/doc.go index be18cea70c..1335def59f 100644 --- a/src/pkg/sync/atomic/doc.go +++ b/src/pkg/sync/atomic/doc.go @@ -22,8 +22,7 @@ // package atomic -// BUG(rsc): -// On ARM, the 64-bit functions use instructions unavailable before ARM 11. +// BUG(rsc): On ARM, the 64-bit functions use instructions unavailable before ARM 11. // // On x86-32, the 64-bit functions use instructions unavailable before the Pentium.