You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//go:noinline
// F does whatever it does.
func F()
instead of the more natural:
// F does whatever it does.
//go:noinline
func F()
because the latter produces:
$ go doc F
func F()
F does whatever it does. go:noinline
Now that we have the //go: convention, let's fix go/doc to leave them out automatically,
and then we can write things the more natural way without cluttering docs.