Skip to content

Commit

Permalink
Fix typo in docs: paramters -> parameters (#84)
Browse files Browse the repository at this point in the history
Just a docs update, so no body here.
  • Loading branch information
vegarsti committed Mar 13, 2020
1 parent 635951a commit c99b416
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions google/cloud/storage/_signing.py
Expand Up @@ -220,7 +220,7 @@ def canonicalize_v2(method, resource, query_parameters, headers):
:type query_parameters: dict
:param query_parameters:
(Optional) Additional query paramtersto be included as part of the
(Optional) Additional query parameters to be included as part of the
signed URLs. See:
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
Expand Down Expand Up @@ -352,7 +352,7 @@ def generate_signed_url_v2(
:type query_parameters: dict
:param query_parameters:
(Optional) Additional query paramtersto be included as part of the
(Optional) Additional query parameters to be included as part of the
signed URLs. See:
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
Expand Down
2 changes: 1 addition & 1 deletion google/cloud/storage/bucket.py
Expand Up @@ -2452,7 +2452,7 @@ def generate_signed_url(
:type query_parameters: dict
:param query_parameters:
(Optional) Additional query paramtersto be included as part of the
(Optional) Additional query parameters to be included as part of the
signed URLs. See:
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test__signing.py
Expand Up @@ -339,7 +339,7 @@ def test_w_headers_and_resumable(self):
canonical.headers, ["x-goog-extension:foobar", "x-goog-resumable:start"]
)

def test_w_query_paramters(self):
def test_w_query_parameters(self):
method = "GET"
resource = "/bucket/blob"
query_parameters = {"foo": "bar", "baz": "qux"}
Expand Down

0 comments on commit c99b416

Please sign in to comment.