Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlls committed Nov 27, 2024
1 parent 3016a87 commit e1a7f0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions casefy/casefy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ def pascalcase(string: str) -> str:
Args:
string (:obj:`str`):
The string to convert to CamelCase.
The string to convert to PascalCase.
Returns:
:obj:`str`: The CamelCased string.
:obj:`str`: The PascalCased string.
"""
if not string:
return ""
Expand Down

0 comments on commit e1a7f0b

Please sign in to comment.