exo5: typo fix.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 6 Apr 2018 12:33:18 +0000 (14:33 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 6 Apr 2018 12:33:18 +0000 (14:33 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
exo5/Main.java

index 37692ef87427a5897f027ba19563235661e79905..dfd22af190b95c44f14d70c072a92882aabe5df9 100644 (file)
@@ -46,7 +46,7 @@ class Main {
             System.out.println("Word \"" + wordCursor + "\" occured " + sm.get(wordCursor) + " times");
         }
 
-        System.out.println("Map content of exaclty duplicated word inferior to the word \"milieu\":");
+        System.out.println("Map content of exactly duplicated word inferior to the word \"milieu\":");
         Map<String, Integer> m1 = tm.entrySet().stream()
             .filter(map -> map.getKey().compareTo("milieu") < 0 && map.getValue() == 2)
             .collect(Collectors.toMap(p -> p.getKey(), p -> p.getValue()));