DEV-3473 docs(commits_stats): correct a typo

This commit is contained in:
Michele Sessa 2022-09-15 14:58:27 +01:00 committed by Michele
parent c977023596
commit 850821bd2b
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ Create two functions:
- `commits_per_author`: which returns a hash map with the number of commits per author. The auditors will be identified by their GitHub login.
- `commits_per_week`: which returns a hash map with the number of commits per week.
> A week is represented by the a year followed by the number of the week. For example, January 1, 2020 is in week 1 of 2020 and will be represented by a `String` with the form `"2020-W1"`.
> A week is represented by the year followed by the number of the week. For example, January 1, 2020 is in week 1 of 2020 and will be represented by a `String` with the form `"2020-W1"`.
### Expected functions