We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca75da commit 83e13aaCopy full SHA for 83e13aa
betterproto/casing.py
@@ -76,8 +76,8 @@ def camel_case(value: str):
76
"""
77
Capitalize all words except first and remove symbols.
78
79
- return capitalize_first(pascal_case(value))
+ return lowercase_first(pascal_case(value))
80
81
82
-def capitalize_first(value: str):
+def lowercase_first(value: str):
83
return value[0:1].lower() + value[1:]
0 commit comments