diff options
author | Yigit Sever | 2022-01-06 21:11:02 +0300 |
---|---|---|
committer | Yigit Sever | 2022-01-06 21:11:02 +0300 |
commit | 56e13084a7c6850e7420c65418ff1b4b99a1c41f (patch) | |
tree | 28b2bc3baa0b10bc2e081b8dd3c1c402c4f27a86 /.local/bin | |
parent | 77c95fbb15af968d260f829f8e0c0c221fb56d56 (diff) | |
download | dotfiles-56e13084a7c6850e7420c65418ff1b4b99a1c41f.tar.gz dotfiles-56e13084a7c6850e7420c65418ff1b4b99a1c41f.tar.bz2 dotfiles-56e13084a7c6850e7420c65418ff1b4b99a1c41f.zip |
sentences: add semicolon
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/sentences | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/sentences b/.local/bin/sentences index cd90380..3626728 100755 --- a/.local/bin/sentences +++ b/.local/bin/sentences | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | use strict; | 3 | use strict; |
4 | 4 | ||
5 | my $pont = qr{[.!?]+}; ## punctuation | 5 | my $pont = qr{[.!?;]+}; ## punctuation |
6 | my $abrev = qr{\b(?:Pr|Dr|Mr|[A-Z]|i\.e|e\.g|et al|etc)\.}; ## abbreviations | 6 | my $abrev = qr{\b(?:Pr|Dr|Mr|[A-Z]|i\.e|e\.g|et al|etc)\.}; ## abbreviations |
7 | my $header = qr{(=+ .*? =+)}; | 7 | my $header = qr{(=+ .*? =+)}; |
8 | 8 | ||