Skip to content

Update kotlin-tour-intermediate-lambdas-receiver.md #4903

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ to explicitly specify the receiver object each time. Without these additional re
{style="tip"}

The syntax for a lambda expression with receiver is different when you define the function type. First, write the receiver
object that you want to extend. Next, put a `.` and then complete the rest of your function type definition. For example:
type that you want to extend. Next, put a `.` and then complete the rest of your function type definition. For example:

```kotlin
MutableList<Int>.() -> Unit
Expand Down Expand Up @@ -310,4 +310,4 @@ fun main() {

## Next step

[Intermediate: Classes and interfaces](kotlin-tour-intermediate-classes-interfaces.md)
[Intermediate: Classes and interfaces](kotlin-tour-intermediate-classes-interfaces.md)