From: Robert Griesemer Date: Thu, 28 Mar 2013 20:13:55 +0000 (-0700) Subject: go/doc: fix typo in comment X-Git-Tag: go1.1rc2~288 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cb79b2cf22ecd84b51ee46ddc922b9214fccc3c0;p=gostls13.git go/doc: fix typo in comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8113043 --- diff --git a/src/pkg/go/doc/doc.go b/src/pkg/go/doc/doc.go index 96d867caea..1f11417932 100644 --- a/src/pkg/go/doc/doc.go +++ b/src/pkg/go/doc/doc.go @@ -64,7 +64,7 @@ type Func struct { Level int // embedding level; 0 means not embedded } -// A Note represents marked comments starting with "MARKER(uid): note body". +// A Note represents a marked comment starting with "MARKER(uid): note body". // Any note with a marker of 2 or more upper case [A-Z] letters and a uid of // at least one character is recognized. The ":" following the uid is optional. // Notes are collected in the Package.Notes map indexed by the notes marker.