From ac5eeb885f06baf4ae044b8dc387ed97aedc6bbe Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 18 Oct 2018 23:50:19 +0300 Subject: [PATCH] Unify AbstractMutableMap JS docs --- .../stdlib/js/src/kotlin/collections/AbstractMutableMap.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.