summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-08-17 16:41:20 +0200
committerMichael Stahl <mstahl@redhat.com>2017-08-17 21:53:28 +0200
commit64a3124d928f337011cad137c2c059f1ef064377 (patch)
treecdcea46848e5b61872716d8deb6f5d5b8f57894a /bin
parentfc443f3b50e33a1adab03bbf7fb9f9351eb07868 (diff)
Fix typos
Change-Id: Iaa9c0aea3ea1a239e378bd714ba335f91bb1faf3 Reviewed-on: https://gerrit.libreoffice.org/41194 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/lo-commit-stat2
-rwxr-xr-xbin/lo-pack-sources2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat
index 2e42d468b40d..e76d0c0875bf 100755
--- a/bin/lo-commit-stat
+++ b/bin/lo-commit-stat
@@ -401,7 +401,7 @@ sub print_bugs($$$$)
{
my ($pbugs, $log, $wiki) = @_;
- # sort alphabetically by bugzilla-type, but whithin that numerically
+ # sort alphabetically by bugzilla-type, but within that numerically
foreach my $bug ( sort { ($a =~ /(\D+)/)[0] cmp ($b =~ /(\D+)/)[0] ||
($a =~ /(\d+)/)[0] <=> ($b =~ /(\d+)/)[0] } keys %{$pbugs}) {
my $summary = $pbugs->{$bug}{'summary'};
diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 4fb886989096..8c795dc170c5 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -48,7 +48,7 @@ sub inc_test_version($)
if ($lastchar =~ /\d/) {
return "$version" . "$lastchar" . "a";
} elsif ($lastchar =~ /\w/) {
- # select next letter alhabeticaly: a->b, b->c, ...
+ # select next letter alphabetically: a->b, b->c, ...
$lastchar =~ tr/0a-zA-Z/a-zA-Z0/;
return "$version" . "$lastchar";
} else {