Skip to content

Commit

Permalink
Correct MutableEntry name (#2061)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton authored Jan 10, 2025
1 parent 5906c9e commit 68731fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Change Log
## Unreleased

* Fix: Support delegates on anonymous classes. (#2034)
* Fix: `TypeName.MUTABLE_MAP_ENTRY` now correctly uses the `MutableEntry` nested class name. (#2061)


## Version 2.0.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public sealed class TypeName constructor(

@JvmField public val MUTABLE_MAP: ClassName = ClassName("kotlin.collections", "MutableMap")

@JvmField public val MUTABLE_MAP_ENTRY: ClassName = MUTABLE_MAP.nestedClass("Entry")
@JvmField public val MUTABLE_MAP_ENTRY: ClassName = MUTABLE_MAP.nestedClass("MutableEntry")

@JvmField public val BOOLEAN_ARRAY: ClassName = ClassName("kotlin", "BooleanArray")

Expand Down

0 comments on commit 68731fd

Please sign in to comment.