From f8bd496ebf3bcd87723e3db5e500c0ff003db509 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 3 May 2011 22:24:24 -0700 Subject: [PATCH] Meta/worklog: minor formatting adjustments --- worklog | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worklog b/worklog index 7b91cefd80..318cb4d049 100755 --- a/worklog +++ b/worklog @@ -276,7 +276,7 @@ sub day_summary { $count = plural($count, "patch", "patches"); $people = plural($people, "person", "people"); - print " Queued $count from $people.\n" if (!$quiet); + print " * Queued $count from $people.\n" if (!$quiet); if ($verbose) { for my $patch (map { $patch{$_} } @{$patch_by_date{$date}}) { print " $patch->[2]\n"; @@ -317,13 +317,13 @@ sub range_summary { if ($total_p) { my $people = plural(scalar @{[keys %{$total_n}]}, "person", "people"); my$count = plural($total_p, "patch", "patches"); - print " Queued $count from $people.\n"; + print " * Queued $count from $people.\n"; } for my $branch_data (@integrate) { my ($branch, $purpose) = @{$branch_data}; next unless $total_m->{$branch}; my $count = plural($total_m->{$branch}, "merge", "merges"); - print " Made $count to '$branch' branch$purpose.\n"; + print " * Made $count to '$branch' branch$purpose.\n"; } $sep = "\n"; }