From 827f7c4d1151f651d240a63f97860a0af650056d Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 13 Jun 2022 00:50:27 +0300 Subject: [PATCH] docs(commits_per_week) correct typo --- subjects/commits_stats/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/commits_stats/README.md b/subjects/commits_stats/README.md index aeae9a37..5d995bc1 100644 --- a/subjects/commits_stats/README.md +++ b/subjects/commits_stats/README.md @@ -6,7 +6,7 @@ In this exercise, you will be provided with a json file `commits.json` with data 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_date`: which returns a hash map with the number of commits per week. +- `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"`.