@@ -125,9 +125,9 @@ def exponential_sleep_generator(initial, maximum, multiplier=_DEFAULT_DELAY_MULT
125125 https://cloud.google.com/storage/docs/exponential-backoff
126126
127127 Args:
128- initial (float): The minimumabout of time to delay. This must
128+ initial (float): The minimumamout of time to delay. This must
129129 be greater than 0.
130- maximum (float): The maximumabout of time to delay.
130+ maximum (float): The maximumamout of time to delay.
131131 multiplier (float): The multiplier applied to the delay.
132132
133133 Yields:
@@ -223,9 +223,9 @@ class Retry(object):
223223 Args:
224224 predicate (Callable[Exception]): A callable that should return ``True``
225225 if the given exception is retryable.
226- initial (float): The minimumabout of time to delay in seconds. This
226+ initial (float): The minimuma,out of time to delay in seconds. This
227227 must be greater than 0.
228- maximum (float): The maximumabout of time to delay in seconds.
228+ maximum (float): The maximumamout of time to delay in seconds.
229229 multiplier (float): The multiplier applied to the delay.
230230 deadline (float): How long to keep retrying in seconds.
231231 """
@@ -314,9 +314,9 @@ def with_delay(self, initial=None, maximum=None, multiplier=None):
314314"""Return a copy of this retry with the given delay options.
315315
316316 Args:
317- initial (float): The minimumabout of time to delay. This must
317+ initial (float): The minimumamout of time to delay. This must
318318 be greater than 0.
319- maximum (float): The maximumabout of time to delay.
319+ maximum (float): The maximumamout of time to delay.
320320 multiplier (float): The multiplier applied to the delay.
321321
322322 Returns: