Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: nicain <nicain.seattle@gmail.com>
  • Loading branch information
parthea and nicain authored Apr 1, 2022
1 parent bd9e927 commit 3543d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synthtool/gcp/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def detect_versions(


def decamelize(value: str):
"""parser to convert fooBar.js to Foo Bar."""
"""Parser to convert fooBar.js to Foo Bar."""
if not value:
return ""
str_decamelize = re.sub("^.", value[0].upper(), value) # apple -> Apple.
Expand Down

0 comments on commit 3543d59

Please sign in to comment.