From fa230a5de648c8fcdfc9279428459ab54862416b Mon Sep 17 00:00:00 2001 From: Stanley9990 <51371819+Stanley9990@users.noreply.github.com> Date: Mon, 28 Sep 2020 01:59:26 +0100 Subject: [PATCH] Update transcoder.py Fixed typo --- src/transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transcoder.py b/src/transcoder.py index 802f2aa..6ac4592 100755 --- a/src/transcoder.py +++ b/src/transcoder.py @@ -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