diff --git a/docs/topics/lambdas.md b/docs/topics/lambdas.md index 8580d6458c3..3f3d1f21671 100644 --- a/docs/topics/lambdas.md +++ b/docs/topics/lambdas.md @@ -1,4 +1,4 @@ -[//]: # (title: High-order functions and lambdas) +[//]: # (title: Higher-order functions and lambdas) Kotlin functions are [first-class](https://en.wikipedia.org/wiki/First-class_function), which means they can be stored in variables and data structures, and can be passed as arguments to and returned from other diff --git a/docs/topics/whatsnew13.md b/docs/topics/whatsnew13.md index 1c3d528f8d3..f5b3ca93c88 100644 --- a/docs/topics/whatsnew13.md +++ b/docs/topics/whatsnew13.md @@ -74,7 +74,7 @@ fun foo(s: String?) { } ``` -* Improving the variable initialization analysis in the presence of high-order functions: +* Improving the variable initialization analysis in the presence of higher-order functions: ```kotlin fun synchronize(lock: Any?, block: () -> Unit) {