Skip to content

Commit

Permalink
Caused colons to behave like commas.
Browse files Browse the repository at this point in the history
  • Loading branch information
webstrand committed Mar 10, 2014
1 parent 8e88909 commit a7e67b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion speedread
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ sub word_time {
my $time = $wordtime;
if ($word =~ /[\.\?]\W*$/) {
$time = $fstoptime;
} elsif ($word =~ /[;,]\W*$/) {
} elsif ($word =~ /[:;,]\W*$/) {
$time = $commatime;
} elsif ($word =~ / /) {
$time = $multitime;
Expand Down

0 comments on commit a7e67b3

Please sign in to comment.