[Docs] Minor api docs improvement

(cherry picked from commit 2a24eaeb7417a4e1a0119e4d9fba94f858c86439)
diff --git a/libraries/stdlib/src/kotlin/time/measureTime.kt b/libraries/stdlib/src/kotlin/time/measureTime.kt
index 7ea26f1..7c611af 100644
--- a/libraries/stdlib/src/kotlin/time/measureTime.kt
+++ b/libraries/stdlib/src/kotlin/time/measureTime.kt
@@ -84,7 +84,7 @@
 }
 
 /**
- * Executes the given [block] and returns an instance of [TimedValue] class, containing both
+ * Executes the given function [block] and returns an instance of [TimedValue] class, containing both
  * the result of function execution and the duration of elapsed time interval.
  *
  * The elapsed time is measured with the specified `this` [TimeSource] instance.
@@ -102,7 +102,7 @@
 }
 
 /**
- * Executes the given [block] and returns an instance of [TimedValue] class, containing both
+ * Executes the given function [block] and returns an instance of [TimedValue] class, containing both
  * the result of function execution and the duration of elapsed time interval.
  *
  * The elapsed time is measured with the specified `this` [TimeSource.Monotonic] instance.