| Index: common/retry/defaults.go
|
| diff --git a/common/retry/defaults.go b/common/retry/defaults.go
|
| index cd68fe1ede9bf934f22e3b448b2f38f524bc29c3..0e0c7afc63e34c8aa125e220d8ce032b24c55d03 100644
|
| --- a/common/retry/defaults.go
|
| +++ b/common/retry/defaults.go
|
| @@ -19,7 +19,8 @@ var defaultIteratorTemplate = ExponentialBackoff{
|
| Multiplier: 2,
|
| }
|
|
|
| -// Default returns a new instance of the default iterator configuration.
|
| +// Default is a Generator that returns a new instance of the default iterator
|
| +// configuration.
|
| func Default() Iterator {
|
| it := defaultIteratorTemplate
|
| return &it
|
|
|