Skip to content

Commit 232dab0

Browse files
authored
docs: fix spelling errors in retry (googleapis#131)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-api-core/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [NA] Ensure the tests and linter pass - [NA] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) Fixes googleapis#130 🦕
1 parent 84cfb97 commit 232dab0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/api_core/retry.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,9 @@ class Retry(object):
230230
Args:
231231
predicate (Callable[Exception]): A callable that should return ``True``
232232
if the given exception is retryable.
233-
initial (float): The minimum a,out of time to delay in seconds. This
233+
initial (float): The minimum amount of time to delay in seconds. This
234234
must be greater than 0.
235-
maximum (float): The maximum amout of time to delay in seconds.
235+
maximum (float): The maximum amount of time to delay in seconds.
236236
multiplier (float): The multiplier applied to the delay.
237237
deadline (float): How long to keep retrying in seconds. The last sleep
238238
period is shortened as necessary, so that the last retry runs at

0 commit comments

Comments
 (0)