aboutsummaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'errors.go')
-rw-r--r--errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/errors.go b/errors.go
index d9487c8..5784126 100644
--- a/errors.go
+++ b/errors.go
@@ -116,7 +116,7 @@ func (e BulkError) Error() string {
//Is checks if the given error is an UnexpectedStatusCodeError for that status
//code. For example:
//
-// err := container.Delete(nil, nil)
+// err := container.Delete(nil)
// if err != nil {
// if schwift.Is(err, http.StatusNotFound) {
// //container does not exist -> just what we wanted