Skip to content

Commit c9a5a73

Browse files
authored
Update README.md
Fixed spelling errors.
1 parent 0d4d3a9 commit c9a5a73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ encode.quaternary12(message: str, secret: str, encoding: str = 'utf') -> str
6060
decode.binary8(message: str, encoding: str = 'utf') -> str
6161
decode.binary16(message: str, encoding: str = 'utf') -> str
6262
decode.binary24(message: str, encoding: str = 'utf') -> str
63-
# Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a binary format.
63+
# Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a binary format.
6464
# Binary8 will expect the message to be encoded using the binary8 encode function and as such characters being represented with 8 digits.
6565
# Binary16 will expect the message to be encoded using the binary16 encode function and as such characters being represented with 16 digits.
6666
# Binary24 will expect the message to be encoded using the binary24 encode function and as such characters being represented with 24 digits.
@@ -69,7 +69,7 @@ decode.binary24(message: str, encoding: str = 'utf') -> str
6969
decode.trinary6(message: str, encoding: str = 'utf') -> str
7070
decode.trinary11(message: str, encoding: str = 'utf') -> str
7171
decode.trinary16(message: str, encoding: str = 'utf') -> str
72-
# Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a trinary format.
72+
# Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a trinary format.
7373
# Trinary6 will expect the message to be encoded using the trinary6 encode function and as such characters being represented with 6 digits.
7474
# Trinary11 will expect the message to be encoded using the trinary11 encode function and as such characters being represented with 11 digits.
7575
# Trinary16 will expect the message to be encoded using the trinary16 encode function and as such characters being represented with 16 digits.
@@ -78,7 +78,7 @@ decode.trinary16(message: str, encoding: str = 'utf') -> str
7878
decode.quaternary4(message: str, encoding: str = 'utf') -> str
7979
decode.quaternary8(message: str, encoding: str = 'utf') -> str
8080
decode.quaternary12(message: str, encoding: str = 'utf') -> str
81-
# Decoding functions that deccodes the 'message' attempting to find zero-width characters encoded in a quaternary format.
81+
# Decoding functions that decodes the 'message' attempting to find zero-width characters encoded in a quaternary format.
8282
# Quaternary4 will expect the message to be encoded using the quaternary4 encode function and as such characters being represented with 4 digits.
8383
# Quaternary8 will expect the message to be encoded using the quaternary8 encode function and as such characters being represented with 8 digits.
8484
# Quaternary12 will expect the message to be encoded using the quaternary12 encode function and as such characters being represented with 12 digits.

0 commit comments

Comments
 (0)