diff --git a/libraries/stdlib/js/src/kotlin/collections/AbstractMutableMap.kt b/libraries/stdlib/js/src/kotlin/collections/AbstractMutableMap.kt index 7ace3490a92..85573747fd3 100644 --- a/libraries/stdlib/js/src/kotlin/collections/AbstractMutableMap.kt +++ b/libraries/stdlib/js/src/kotlin/collections/AbstractMutableMap.kt @@ -12,7 +12,7 @@ package kotlin.collections /** * Provides a skeletal implementation of the [MutableMap] interface. * - * The implementor is required to implement the [entries] property, which should return mutable set of map entries, and the [put] function. + * The implementor is required to implement [entries] property, which should return mutable set of map entries, and [put] function. * * @param K the type of map keys. The map is invariant on its key type. * @param V the type of map values. The map is invariant on its value type.