Skip to content

Commit b56e09d

Browse files
committed
Update README.md.
1 parent 9e716e5 commit b56e09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@ public static <K, V> Map<K, V> mapOf(Map.Entry<K, V>... entries) { ... }
10261026
public static <E> Set<E> setOf(E... elements) { ... }
10271027
```
10281028

1029-
They offer an alternative to similar methods defined by the `List`, `Map`, and `Set` interfaces, which produce immutable instances and do not permit `null` values. Immutable and sorted variants are provided as well:
1029+
They offer an alternative to similar methods defined by the `List`, `Map`, and `Set` interfaces, which produce immutable instances and do not permit `null` values. The following immutable and sorted variants are provided as well:
10301030

10311031
```java
10321032
public static <E> List<E> immutableListOf(E... elements) { ... }

0 commit comments

Comments
 (0)