Skip to content

Commit

Permalink
docs: address terminology (#201)
Browse files Browse the repository at this point in the history
* docs: address terminology

* use environment

* revert word change in CHANGELOG.md

* revert docs/conf.py
  • Loading branch information
frankyn committed Feb 13, 2021
1 parent ae966a1 commit a88cfb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -63,7 +63,7 @@
# The encoding of source files.
# source_encoding = 'utf-8-sig'

# The master toctree document.
# The main toctree document.
master_doc = "index"

# General information about the project.
Expand Down
2 changes: 1 addition & 1 deletion google/_async_resumable_media/_helpers.py
Expand Up @@ -106,7 +106,7 @@ def calculate_retry_wait(base_wait, max_sleep):
"""Calculate the amount of time to wait before a retry attempt.
Wait time grows exponentially with the number of attempts, until
it hits ``max_sleep``.
``max_sleep``.
A random amount of jitter (between 0 and 1 seconds) is added to spread out
retry attempts from different clients.
Expand Down
2 changes: 1 addition & 1 deletion google/resumable_media/_helpers.py
Expand Up @@ -110,7 +110,7 @@ def calculate_retry_wait(base_wait, max_sleep):
"""Calculate the amount of time to wait before a retry attempt.
Wait time grows exponentially with the number of attempts, until
it hits ``max_sleep``.
``max_sleep``.
A random amount of jitter (between 0 and 1 seconds) is added to spread out
retry attempts from different clients.
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -210,7 +210,7 @@ def blacken(session):
def system(session):
"""Run the system test suite."""

# Sanity check: environment variables are set.
# Environment check: environment variables are set.
missing = []
for env_var in SYSTEM_TEST_ENV_VARS:
if env_var not in os.environ:
Expand Down

0 comments on commit a88cfb9

Please sign in to comment.