woops typo

This commit is contained in:
Brian West 2014-06-17 17:20:00 -05:00
parent b0369d321f
commit 315add5637
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ my @nums = <NUMS>;
foreach my $num (@nums) {
chomp $num;
$num =~ s/^1//;
next if lenght($num) != 10;
next if length($num) != 10;
print "Dialing from $num\n";
my @digits = split(//, $num);
my $dial = join('w', @digits);