summaryrefslogtreecommitdiff
path: root/src/pkg/container/ring
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/container/ring')
-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.
//