1
0
mirror of https://github.com/golang/go synced 2024-11-18 07:44:51 -07:00

go/ast: fix typo in comment

Change-Id: I719231466286b3c0135314388a7c560ef44d7c35
Reviewed-on: https://go-review.googlesource.com/20130
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Robert Griesemer <gri@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Ian Lance Taylor 2016-03-02 09:20:38 -08:00
parent 37c28759ca
commit 053aef4f1b

View File

@ -267,7 +267,7 @@ func (cmap CommentMap) Filter(node Node) CommentMap {
}
// Comments returns the list of comment groups in the comment map.
// The result is sorted is source order.
// The result is sorted in source order.
//
func (cmap CommentMap) Comments() []*CommentGroup {
list := make([]*CommentGroup, 0, len(cmap))