Skip to content

Commit c99b416

Browse files
authored
Fix typo in docs: paramters -> parameters (#84)
Just a docs update, so no body here.
1 parent 635951a commit c99b416

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

google/cloud/storage/_signing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def canonicalize_v2(method, resource, query_parameters, headers):
220220
221221
:type query_parameters: dict
222222
:param query_parameters:
223-
(Optional) Additional query paramtersto be included as part of the
223+
(Optional) Additional query parameters to be included as part of the
224224
signed URLs. See:
225225
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
226226
@@ -352,7 +352,7 @@ def generate_signed_url_v2(
352352
353353
:type query_parameters: dict
354354
:param query_parameters:
355-
(Optional) Additional query paramtersto be included as part of the
355+
(Optional) Additional query parameters to be included as part of the
356356
signed URLs. See:
357357
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
358358

google/cloud/storage/bucket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2452,7 +2452,7 @@ def generate_signed_url(
24522452
24532453
:type query_parameters: dict
24542454
:param query_parameters:
2455-
(Optional) Additional query paramtersto be included as part of the
2455+
(Optional) Additional query parameters to be included as part of the
24562456
signed URLs. See:
24572457
https://cloud.google.com/storage/docs/xml-api/reference-headers#query
24582458

tests/unit/test__signing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def test_w_headers_and_resumable(self):
339339
canonical.headers, ["x-goog-extension:foobar", "x-goog-resumable:start"]
340340
)
341341

342-
def test_w_query_paramters(self):
342+
def test_w_query_parameters(self):
343343
method = "GET"
344344
resource = "/bucket/blob"
345345
query_parameters = {"foo": "bar", "baz": "qux"}

0 commit comments

Comments
 (0)