aboutsummaryrefslogtreecommitdiff
path: root/container_iterator.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2018-02-17 11:21:58 +0100
committerStefan Majewsky <majewsky@gmx.net>2018-02-17 11:21:58 +0100
commit5f156b42b634d57bd7d0dc835d738401b908bcf2 (patch)
treef6e657d4cdf53bd66c0660873d721c5e142b793a /container_iterator.go
parentf2bbc3ca2d83b8e0da3ff3652f9d721c6cd91955 (diff)
downloadgo-schwift-5f156b42b634d57bd7d0dc835d738401b908bcf2.tar.gz
add Container.Objects(), type ObjectIterator
Diffstat (limited to 'container_iterator.go')
-rw-r--r--container_iterator.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/container_iterator.go b/container_iterator.go
index 8c04be6..c428335 100644
--- a/container_iterator.go
+++ b/container_iterator.go
@@ -37,7 +37,7 @@ type ContainerInfo struct {
//ContainerIterator iterates over the accounts in a container. It is typically
//constructed with the Account.Containers() method. For example:
//
-// //either this...
+// //either this...
// iter := account.Containers()
// iter.Prefix = "test-"
// containers, err := iter.Collect()