Skip to content

Commit 92840f1

Browse files
do-rtkbusunkim96
authored andcommitted
docs: about of time -> amount of time (#9052)
typo fix
1 parent 48b2c7d commit 92840f1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

google/api_core/retry.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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 minimum about of time to delay. This must
128+
initial (float): The minimum amout of time to delay. This must
129129
be greater than 0.
130-
maximum (float): The maximum about of time to delay.
130+
maximum (float): The maximum amout 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 minimum about of time to delay in seconds. This
226+
initial (float): The minimum a,out of time to delay in seconds. This
227227
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.
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 minimum about of time to delay. This must
317+
initial (float): The minimum amout of time to delay. This must
318318
be greater than 0.
319-
maximum (float): The maximum about of time to delay.
319+
maximum (float): The maximum amout of time to delay.
320320
multiplier (float): The multiplier applied to the delay.
321321
322322
Returns:

0 commit comments

Comments
 (0)