aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]} }