aboutsummaryrefslogtreecommitdiff
path: root/iterator.go
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2022-10-26 11:31:22 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-10-26 14:05:42 +0200
commit04ce17415f25dbf10eba954212c8428ae630df88 (patch)
tree1aca7ceab052f17a44bb903fb5a8bd45202bd54c /iterator.go
parentfd6e57b6239655722884a49a86be0f051cc32bde (diff)
downloadgo-schwift-04ce17415f25dbf10eba954212c8428ae630df88.tar.gz
Format with go 1.19
Diffstat (limited to 'iterator.go')
-rw-r--r--iterator.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/iterator.go b/iterator.go
index 641e28d..6ae132b 100644
--- a/iterator.go
+++ b/iterator.go
@@ -25,8 +25,8 @@ import (
"strings"
)
-//iteratorInterface allows iteratorBase to access public attributes of
-//ContainerIterator/ObjectIterator.
+// iteratorInterface allows iteratorBase to access public attributes of
+// ContainerIterator/ObjectIterator.
type iteratorInterface interface {
getAccount() *Account
getContainerName() string
@@ -68,7 +68,7 @@ func (i ObjectIterator) putHeader(hdr http.Header) error {
return nil
}
-//iteratorBase provides shared behavior for ContainerIterator and ObjectIterator.
+// iteratorBase provides shared behavior for ContainerIterator and ObjectIterator.
type iteratorBase struct {
i iteratorInterface
marker string