--- old/src/java.base/share/classes/java/util/Map.java 2017-09-20 16:53:09.000000000 -0700 +++ new/src/java.base/share/classes/java/util/Map.java 2017-09-20 16:53:09.000000000 -0700 @@ -110,17 +110,18 @@ * Implementations may optionally handle the self-referential scenario, however * most current implementations do not do so. * - *

Immutable Map Static Factory Methods

- *

The {@link Map#of() Map.of()} and - * {@link Map#ofEntries(Map.Entry...) Map.ofEntries()} - * static factory methods provide a convenient way to create immutable maps. + *

Unmodifiable Maps

+ *

The {@link Map#of() Map.of}, + * {@link Map#ofEntries(Map.Entry...) Map.ofEntries}, and + * {@link Map#copyOf Map.copyOf} + * static factory methods provide a convenient way to create unmodifiable maps. * The {@code Map} * instances created by these methods have the following characteristics: * *