From: Ian Lance Taylor Date: Wed, 2 Mar 2016 17:20:38 +0000 (-0800) Subject: go/ast: fix typo in comment X-Git-Tag: go1.7beta1~1605 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=053aef4f1bcaf118210fca7d72f141cb8d260aeb;p=gostls13.git go/ast: fix typo in comment Change-Id: I719231466286b3c0135314388a7c560ef44d7c35 Reviewed-on: https://go-review.googlesource.com/20130 Run-TryBot: Ian Lance Taylor Reviewed-by: Robert Griesemer TryBot-Result: Gobot Gobot --- diff --git a/src/go/ast/commentmap.go b/src/go/ast/commentmap.go index ac999d627c..2a653a60ac 100644 --- a/src/go/ast/commentmap.go +++ b/src/go/ast/commentmap.go @@ -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))