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 3543d59 commit f48db02
Showing 1 changed file with 1 addition and 1 deletion.
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 f48db02

Please sign in to comment.