Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
Co-authored-by: nicain <nicholascain@google.com>
  • Loading branch information
parthea and nicain committed Apr 1, 2022
1 parent bd9e927 commit f8aac11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion synthtool/gcp/samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def all_samples(sample_globs: List[str]) -> List[Dict[str, str]]:


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 f8aac11

Please sign in to comment.