From b4bca6c841316b79ca5811b3c7c8bd2ab8eb1a82 Mon Sep 17 00:00:00 2001 From: Holt Skinner Date: Fri, 2 Feb 2024 11:41:02 -0600 Subject: [PATCH] fix: Spelling error `a,out` -> `amount` --- google/api_core/retry/retry_streaming_async.py | 2 +- google/api_core/retry/retry_unary_async.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/google/api_core/retry/retry_streaming_async.py b/google/api_core/retry/retry_streaming_async.py index ed4edab2f..2924ba141 100644 --- a/google/api_core/retry/retry_streaming_async.py +++ b/google/api_core/retry/retry_streaming_async.py @@ -260,7 +260,7 @@ def on_error(e): Args: predicate (Callable[Exception]): A callable that should return ``True`` if the given exception is retryable. - initial (float): The minimum a,out of time to delay in seconds. This + initial (float): The minimum amount of time to delay in seconds. This must be greater than 0. maximum (float): The maximum amount of time to delay in seconds. multiplier (float): The multiplier applied to the delay. diff --git a/google/api_core/retry/retry_unary_async.py b/google/api_core/retry/retry_unary_async.py index f97ea9311..3bdf6c719 100644 --- a/google/api_core/retry/retry_unary_async.py +++ b/google/api_core/retry/retry_unary_async.py @@ -185,7 +185,7 @@ class AsyncRetry(_BaseRetry): Args: predicate (Callable[Exception]): A callable that should return ``True`` if the given exception is retryable. - initial (float): The minimum a,out of time to delay in seconds. This + initial (float): The minimum amount of time to delay in seconds. This must be greater than 0. maximum (float): The maximum amount of time to delay in seconds. multiplier (float): The multiplier applied to the delay.