diff --git a/docs/topics/scope-functions.md b/docs/topics/scope-functions.md index 4d1b7cff10a..ce6b7e32e9f 100644 --- a/docs/topics/scope-functions.md +++ b/docs/topics/scope-functions.md @@ -464,7 +464,7 @@ fun main() { You can also invoke `run` as a non-extension function. The non-extension variant of `run` has no context object, but it still returns the lambda result. Non-extension `run` lets you execute a block of several statements where an expression -is required. In other words, it does group some temporary local variables for a calculation. You can read it as "_run the code block and return the result._" +is required. In code, non-extension `run` can be read as "_run the code block and compute the result._" ```kotlin fun main() {