Skip to content

Commit 9169bae

Browse files
committed
Fix comments
1 parent 00ccd0e commit 9169bae

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tools/git/scripts/authors_per_month

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22
#
33
# Prints the number of authors per month.
44
#
5-
# <weekday> <month> <year> <number_of_authors>
5+
# <month> <year> <number_of_authors>
66

77
# * `git log`
88
# - Show logs.
99
# * `awk '{}'`
1010
# - Compute number of authors per month.
1111
# * `sort -k1n -k2M`
1212
# - Sort the year numerically and sort the second key as a month.
13-
# * `awk '{}'`
14-
# - Format the output.
1513
git log --format=format:"%ad %aN" --date=format:"%b %Y" --use-mailmap | awk '
1614
{
1715
mon = $1 OFS $2

0 commit comments

Comments
 (0)