diff options
| author | NCPlayz <[email protected]> | 2019-05-18 06:04:54 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-06-07 19:27:46 -0400 |
| commit | 3c9bcc285147154a2980f6e661efdfa676672b6a (patch) | |
| tree | 657bafa75e4e0d45361e394443ea932ad70e86a7 /discord/backoff.py | |
| parent | Added comment for/redo system information (diff) | |
| download | discord.py-3c9bcc285147154a2980f6e661efdfa676672b6a.tar.xz discord.py-3c9bcc285147154a2980f6e661efdfa676672b6a.zip | |
Improve documentation
Diffstat (limited to 'discord/backoff.py')
| -rw-r--r-- | discord/backoff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/backoff.py b/discord/backoff.py index a4f3221c..3ebc019e 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -42,10 +42,10 @@ class ExponentialBackoff: Parameters ---------- base: :class:`int` - The base delay in seconds. The first retry-delay will be up to + The base delay in seconds. The first retry-delay will be up to this many seconds. integral: :class:`bool` - Set to True if whole periods of base is desirable, otherwise any + Set to ``True`` if whole periods of base is desirable, otherwise any number in between may be returned. """ |