Use title instead of capitalized for the categories #1

Open
Dalai Felinto wants to merge 1 commits from dfelinto-patch-1 into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.

View File

@ -26,7 +26,7 @@ def parse_comment_line(input_string):
# Remove /* and */
stripped_string = input_string[2:-3].strip()
# Capitalize the string
capitalized_string = stripped_string.capitalize()
capitalized_string = stripped_string.title()
return capitalized_string