aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Smith <js5@sanger.ac.uk>2021-11-23 10:31:55 +0000
committerGitHub <noreply@github.com>2021-11-23 10:31:55 +0000
commit14a75baed4826c986ec6cbeaf4b84f803b678f2e (patch)
tree66b1e0346e26e0a6d2798dc8e30ded263429eb32
parent8310af380eb746797d08a528f4593f9eaff87ff0 (diff)
downloadperlweeklychallenge-club-14a75baed4826c986ec6cbeaf4b84f803b678f2e.tar.gz
perlweeklychallenge-club-14a75baed4826c986ec6cbeaf4b84f803b678f2e.tar.bz2
perlweeklychallenge-club-14a75baed4826c986ec6cbeaf4b84f803b678f2e.zip
Update README.md
-rw-r--r--challenge-140/james-smith/README.md2
1 files changed, 1 insertions, 1 deletions
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]} }