@@ -125,9 +125,9 @@ def exponential_sleep_generator(initial, maximum, multiplier=_DEFAULT_DELAY_MULT
125
125
https://cloud.google.com/storage/docs/exponential-backoff
126
126
127
127
Args:
128
- initial (float): The minimum about of time to delay. This must
128
+ initial (float): The minimum amout of time to delay. This must
129
129
be greater than 0.
130
- maximum (float): The maximum about of time to delay.
130
+ maximum (float): The maximum amout of time to delay.
131
131
multiplier (float): The multiplier applied to the delay.
132
132
133
133
Yields:
@@ -223,9 +223,9 @@ class Retry(object):
223
223
Args:
224
224
predicate (Callable[Exception]): A callable that should return ``True``
225
225
if the given exception is retryable.
226
- initial (float): The minimum about of time to delay in seconds. This
226
+ initial (float): The minimum a,out of time to delay in seconds. This
227
227
must be greater than 0.
228
- maximum (float): The maximum about of time to delay in seconds.
228
+ maximum (float): The maximum amout of time to delay in seconds.
229
229
multiplier (float): The multiplier applied to the delay.
230
230
deadline (float): How long to keep retrying in seconds.
231
231
"""
@@ -314,9 +314,9 @@ def with_delay(self, initial=None, maximum=None, multiplier=None):
314
314
"""Return a copy of this retry with the given delay options.
315
315
316
316
Args:
317
- initial (float): The minimum about of time to delay. This must
317
+ initial (float): The minimum amout of time to delay. This must
318
318
be greater than 0.
319
- maximum (float): The maximum about of time to delay.
319
+ maximum (float): The maximum amout of time to delay.
320
320
multiplier (float): The multiplier applied to the delay.
321
321
322
322
Returns:
0 commit comments