From 14a75baed4826c986ec6cbeaf4b84f803b678f2e Mon Sep 17 00:00:00 2001 From: James Smith Date: Tue, 23 Nov 2021 10:31:55 +0000 Subject: Update README.md --- challenge-140/james-smith/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-140/james-smith/README.md b/challenge-140/james-smith/README.md index a8e52f8440..40dc6bd1b5 100644 --- a/challenge-140/james-smith/README.md +++ b/challenge-140/james-smith/README.md @@ -42,7 +42,7 @@ We repeat this until we no longer have a carry AND we have processed all digits ```perl package DecBin; -use overload ('+'=>bin_add','=='=>'comp','""'=>'show'); +use overload ('+'=>'bin_add','=='=>'comp','""'=>'show'); sub new { bless \$_[1], $_[0] } sub show { ${$_[0]} } -- cgit