aboutsummaryrefslogtreecommitdiff
path: root/container_iterator.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2018-05-03 14:09:36 +0200
committerStefan Majewsky <majewsky@gmx.net>2018-05-03 14:09:36 +0200
commit8cb7c02b4294d3f596633284abc144ba98b565b8 (patch)
treed171d6614aaee0e53b1ebea3c9345e3ff65af4a3 /container_iterator.go
parent1a64fd95e191e87b9d0c1e0e9556cff92fc230a5 (diff)
downloadgo-schwift-8cb7c02b4294d3f596633284abc144ba98b565b8.tar.gz
proof-read documentation
Diffstat (limited to 'container_iterator.go')
-rw-r--r--container_iterator.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/container_iterator.go b/container_iterator.go
index debe475..73722e3 100644
--- a/container_iterator.go
+++ b/container_iterator.go
@@ -56,7 +56,7 @@ type ContainerInfo struct {
//To obtain any other metadata, you can call Container.Headers() on the result
//container, but this will issue a separate HEAD request for each container.
//
-//Use the "Detailed" methods only when you can use the extra metadata in struct
+//Use the "Detailed" methods only when you use the extra metadata in struct
//ContainerInfo; detailed GET requests are more expensive than simple ones that
//return only container names.
type ContainerIterator struct {
@@ -78,7 +78,7 @@ func (i *ContainerIterator) getBase() *iteratorBase {
}
//NextPage queries Swift for the next page of container names. If limit is
-//>= 0, not more than that container names will be returned at once. Note
+//>= 0, not more than that many container names will be returned at once. Note
//that the server also has a limit for how many containers to list in one
//request; the lower limit wins.
//