Skip to content

Commit 88688b1

Browse files
authoredFeb 2, 2024
fix: Spelling error a,out -> amount (#596)
1 parent 5922f2b commit 88688b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

Diff for: ‎google/api_core/retry/retry_streaming_async.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def on_error(e):
260260
Args:
261261
predicate (Callable[Exception]): A callable that should return ``True``
262262
if the given exception is retryable.
263-
initial (float): The minimum a,out of time to delay in seconds. This
263+
initial (float): The minimum amount of time to delay in seconds. This
264264
must be greater than 0.
265265
maximum (float): The maximum amount of time to delay in seconds.
266266
multiplier (float): The multiplier applied to the delay.

Diff for: ‎google/api_core/retry/retry_unary_async.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class AsyncRetry(_BaseRetry):
185185
Args:
186186
predicate (Callable[Exception]): A callable that should return ``True``
187187
if the given exception is retryable.
188-
initial (float): The minimum a,out of time to delay in seconds. This
188+
initial (float): The minimum amount of time to delay in seconds. This
189189
must be greater than 0.
190190
maximum (float): The maximum amount of time to delay in seconds.
191191
multiplier (float): The multiplier applied to the delay.

0 commit comments

Comments
 (0)
Please sign in to comment.