Meta/worklog: minor formatting adjustments

Junio C Hamano committed May 3, 2011 at 22:24 UTC f8bd496ebf3bcd87723e3db5e500c0ff003db509
1 file changed +3 -3
worklog
+3 -3
@@ -276,7 +276,7 @@ sub day_summary {
276
277 $count = plural($count, "patch", "patches");
278 $people = plural($people, "person", "people");
279 - print " Queued $count from $people.\n" if (!$quiet);
279 + print " * Queued $count from $people.\n" if (!$quiet);
280 if ($verbose) {
281 for my $patch (map { $patch{$_} } @{$patch_by_date{$date}}) {
282 print " $patch->[2]\n";
@@ -317,13 +317,13 @@ sub range_summary {
317 if ($total_p) {
318 my $people = plural(scalar @{[keys %{$total_n}]}, "person", "people");
319 my$count = plural($total_p, "patch", "patches");
320 - print " Queued $count from $people.\n";
320 + print " * Queued $count from $people.\n";
321 }
322 for my $branch_data (@integrate) {
323 my ($branch, $purpose) = @{$branch_data};
324 next unless $total_m->{$branch};
325 my $count = plural($total_m->{$branch}, "merge", "merges");
326 - print " Made $count to '$branch' branch$purpose.\n";
326 + print " * Made $count to '$branch' branch$purpose.\n";
327 }
328 $sep = "\n";
329 }