Skip to content

Commit d7b83a1

Browse files
jisungbinilya-g
authored andcommitted
Fix wrong method
`toImmutable()` -> `toImmutableList()`
1 parent a475e63 commit d7b83a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ For persistent collection interfaces there shall be provided the following imple
4848

4949
class Query(parameters: List<Parameter>) {
5050
// creates an immutable list or does nothing if it's already immutable
51-
val parameters = parameters.toImmutable()
51+
val parameters = parameters.toImmutableList()
5252
}
5353
```
5454

0 commit comments

Comments
 (0)