Skip to content

Commit

Permalink
Update transcoder.py
Browse files Browse the repository at this point in the history
Fixed typo
  • Loading branch information
Stanley9990 authored and Stanley9990 committed Sep 28, 2020
1 parent 849ef8e commit fa230a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transcoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def asOctal(data):
def asBinary(data):
"""String to printable binary conversion

Creates and returns a string containing the binarya representation of the input string. For example, with the input "ABC", the function will return "0b1000001 0b1000010 0b1000011"
Creates and returns a string containing the binary representation of the input string. For example, with the input "ABC", the function will return "0b1000001 0b1000010 0b1000011"

Args:
data (string): a string to convert into the binary representation
Expand Down

0 comments on commit fa230a5

Please sign in to comment.