summaryrefslogtreecommitdiff
path: root/src/pkg/go/ast/commentmap.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/go/ast/commentmap.go')
-rw-r--r--src/pkg/go/ast/commentmap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/go/ast/commentmap.go b/src/pkg/go/ast/commentmap.go
index 1fb4867dd..ac999d627 100644
--- a/src/pkg/go/ast/commentmap.go
+++ b/src/pkg/go/ast/commentmap.go
@@ -149,7 +149,7 @@ func NewCommentMap(fset *token.FileSet, node Node, comments []*CommentGroup) Com
// set up comment reader r
tmp := make([]*CommentGroup, len(comments))
- copy(tmp, comments) // don't change incomming comments
+ copy(tmp, comments) // don't change incoming comments
sortComments(tmp)
r := commentListReader{fset: fset, list: tmp} // !r.eol() because len(comments) > 0
r.next()