Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Commit d5a4c0c

Browse files
committed
Merge branch 'master' into exercise/completed
2 parents fdfb50a + 55aef9d commit d5a4c0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

account-analytics/src/main/java/com.bobocode/AccountAnalytics.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ public Map<String, Set<String>> groupFirstNamesByLastNames() {
116116
}
117117

118118
/**
119-
* Returns a {@link Map} where key is a birthday month, and value is a {@link String} that stores comma-separated
120-
* first names, of all accounts that have the same birthday month.
119+
* Returns a {@link Map} where key is a birthday month, and value is a {@link String} that stores comma and space
120+
* -separated first names (e.g. "Polly, Dylan, Clark"), of all accounts that have the same birthday month.
121121
*
122122
* @return a map where a key is a birthday month and value is comma-separated first names
123123
*/
@@ -156,7 +156,7 @@ public Map<Character, Long> getCharacterFrequencyInFirstNames() {
156156

157157
/**
158158
* Returns a {@link Map} where key is a letter {@link Character}, and value is a number of its occurrences ignoring
159-
* case, in all {@link Account#firstName} and {@link Account#lastName}.
159+
* case, in all {@link Account#firstName} and {@link Account#lastName}. All letters should stored in lower case.
160160
*
161161
* @return a map where key is a letter and value is its count ignoring case in all first and last names
162162
*/

0 commit comments

Comments
 (0)