docs: about of time -> amount of time (#9052)
typo fix
diff --git a/google/api_core/retry.py b/google/api_core/retry.py
index 028af3e..747c137 100644
--- a/google/api_core/retry.py
+++ b/google/api_core/retry.py
@@ -125,9 +125,9 @@
https://cloud.google.com/storage/docs/exponential-backoff
Args:
- initial (float): The minimum about of time to delay. This must
+ initial (float): The minimum amout of time to delay. This must
be greater than 0.
- maximum (float): The maximum about of time to delay.
+ maximum (float): The maximum amout of time to delay.
multiplier (float): The multiplier applied to the delay.
Yields:
@@ -223,9 +223,9 @@
Args:
predicate (Callable[Exception]): A callable that should return ``True``
if the given exception is retryable.
- initial (float): The minimum about of time to delay in seconds. This
+ initial (float): The minimum a,out of time to delay in seconds. This
must be greater than 0.
- maximum (float): The maximum about of time to delay in seconds.
+ maximum (float): The maximum amout of time to delay in seconds.
multiplier (float): The multiplier applied to the delay.
deadline (float): How long to keep retrying in seconds.
"""
@@ -314,9 +314,9 @@
"""Return a copy of this retry with the given delay options.
Args:
- initial (float): The minimum about of time to delay. This must
+ initial (float): The minimum amout of time to delay. This must
be greater than 0.
- maximum (float): The maximum about of time to delay.
+ maximum (float): The maximum amout of time to delay.
multiplier (float): The multiplier applied to the delay.
Returns: