Skip to content

Commit f4a16f6

Browse files
Lowercase g --> Capital G (#5845)
* Updated the comments in the code * Update .gitignore * Update .gitignore * Update .gitignore Co-authored-by: Christian Clauss <[email protected]>
1 parent 1ae5abf commit f4a16f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

other/password_generator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Password generator allows you to generate a random password of length N."""
1+
"""Password Generator allows you to generate a random password of length N."""
22
from random import choice, shuffle
33
from string import ascii_letters, digits, punctuation
44

@@ -24,7 +24,7 @@ def password_generator(length=8):
2424
# ctbi= characters that must be in password
2525
# i= how many letters or characters the password length will be
2626
def alternative_password_generator(ctbi, i):
27-
# Password generator = full boot with random_number, random_letters, and
27+
# Password Generator = full boot with random_number, random_letters, and
2828
# random_character FUNCTIONS
2929
# Put your code here...
3030
i = i - len(ctbi)

0 commit comments

Comments
 (0)