Skip to content

Commit e1a7f0b

Browse files
committed
Fix docstring
1 parent 3016a87 commit e1a7f0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

casefy/casefy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def pascalcase(string: str) -> str:
2828
2929
Args:
3030
string (:obj:`str`):
31-
The string to convert to CamelCase.
31+
The string to convert to PascalCase.
3232
3333
Returns:
34-
:obj:`str`: The CamelCased string.
34+
:obj:`str`: The PascalCased string.
3535
"""
3636
if not string:
3737
return ""

0 commit comments

Comments
 (0)