aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchallenge-287/mattneleigh/perl/ch-1.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-287/mattneleigh/perl/ch-1.pl b/challenge-287/mattneleigh/perl/ch-1.pl
index d3652ecf30..cdd4875f91 100755
--- a/challenge-287/mattneleigh/perl/ch-1.pl
+++ b/challenge-287/mattneleigh/perl/ch-1.pl
@@ -77,7 +77,7 @@ sub steps_to_strong_password{
$chars_added += 6 - length($string)
if(length($string) < 6);
- # See if we have blocks of three repeated chars...
+ # See if we have a block of three repeated chars...
if($string =~ m/(.)\1{2}/g){
$blocks_of_three = 1;