Skip to content

Commit 2d39850

Browse files
ItssxxsalmancclaussCaedenPH
authored
Fix grammatical mistakes in simple_keyword_cypher.py (TheAlgorithms#6385)
* Fixed grammitical mistake * Update ciphers/simple_keyword_cypher.py Co-authored-by: Caeden Perelli-Harris <[email protected]> Co-authored-by: Christian Clauss <[email protected]> Co-authored-by: Caeden Perelli-Harris <[email protected]>
1 parent 7b7b3dd commit 2d39850

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ciphers/simple_keyword_cypher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def create_cipher_map(key: str) -> dict[str, str]:
2121
:param key: keyword to use
2222
:return: dictionary cipher map
2323
"""
24-
# Create alphabet list
24+
# Create a list of the letters in the alphabet
2525
alphabet = [chr(i + 65) for i in range(26)]
2626
# Remove duplicate characters from key
2727
key = remove_duplicates(key.upper())

0 commit comments

Comments
 (0)