From 2ede20d06d48e1a74998f63f131db2af4792a87b Mon Sep 17 00:00:00 2001 From: Gokul <43350089+gokulp01@users.noreply.github.com> Date: Thu, 15 Oct 2020 17:33:35 +0530 Subject: [PATCH] Updated Decimal to Binary generator --- mathgenerator/mathgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mathgenerator/mathgen.py b/mathgenerator/mathgen.py index cefaa62..6a0731c 100644 --- a/mathgenerator/mathgen.py +++ b/mathgenerator/mathgen.py @@ -182,4 +182,4 @@ gcd = Generator("Gcd_generator", 12, "GCD of a and b = ", "c", gcdFunc) basicAlgebra = Generator("Basic_Algebra", 13, "ax + b = c", "d", basicAlgebraFunc) log = Generator("Logarithm", 13, "log2(8)", "3", logFunc) intdivision = Generator("Easy Divisio",14,"a/b=","c",divisionToIntFunc) -decimaltobinary = Generator("Decimal to Binary",15,"Binary of a=","c",decimalToBinary) +decimaltobinary = Generator("Decimal to Binary",15,"Binary of a=","b",decimalToBinary)