summaryrefslogtreecommitdiff
path: root/src/pkg/container
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2012-11-22 02:58:24 +0800
committerShenghou Ma <minux.ma@gmail.com>2012-11-22 02:58:24 +0800
commitd17c3c2e9e73e1af6794825bb970b9b5d8167a26 (patch)
treeb5910ff67142b8016aa1634d5e7c622dc348d3d0 /src/pkg/container
parentb4c3f807fac224d67e759d9edb9475dbd89677f2 (diff)
downloadgo-d17c3c2e9e73e1af6794825bb970b9b5d8167a26.tar.gz
all: fix the the typos
Fixes issue 4420. R=golang-dev, rsc, remyoudompheng CC=golang-dev http://codereview.appspot.com/6854080
Diffstat (limited to 'src/pkg/container')
-rw-r--r--src/pkg/container/ring/ring.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/container/ring/ring.go b/src/pkg/container/ring/ring.go
index 1d96918d3..6d3b3e5b3 100644
--- a/src/pkg/container/ring/ring.go
+++ b/src/pkg/container/ring/ring.go
@@ -74,7 +74,7 @@ func New(n int) *Ring {
return r
}
-// Link connects ring r with with ring s such that r.Next()
+// Link connects ring r with ring s such that r.Next()
// becomes s and returns the original value for r.Next().
// r must not be empty.
//