Skip to content

Commit 8762283

Browse files
jingtaowtseaver
authored andcommitted
cleanup(storage): fix typo in '_helpers.py' (#9239)
1 parent 66e1b74 commit 8762283

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

storage/google/cloud/storage/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _validate_name(name):
4343
if name is None:
4444
return
4545

46-
# The first and las characters must be alphanumeric.
46+
# The first and last characters must be alphanumeric.
4747
if not all([name[0].isalnum(), name[-1].isalnum()]):
4848
raise ValueError("Bucket names must start and end with a number or letter.")
4949
return name

0 commit comments

Comments
 (0)