diff --git a/docs/topics/scope-functions.md b/docs/topics/scope-functions.md index 3b1ea6d1ce2..4d1b7cff10a 100644 --- a/docs/topics/scope-functions.md +++ b/docs/topics/scope-functions.md @@ -431,7 +431,7 @@ fun main() { - **The return value** is the lambda result. [`run`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/run.html) does the same as `with` but it is implemented as -an extension function ("_The `with` in extension function style!_"). So like `let`, you can call it on the context object using dot notation. +an extension function. So like `let`, you can call it on the context object using dot notation. `run` is useful when your lambda both initializes objects and computes the return value.