Skip to content

Commit 9ede0ac

Browse files
Geek-Joesarahhaggarty
authored andcommitted
Update kotlin-tour-intermediate-lambdas-receiver.md
"receiver type" is right here
1 parent 73f61ae commit 9ede0ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/tour/kotlin-tour-intermediate-lambdas-receiver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ to explicitly specify the receiver object each time. Without these additional re
2828
{style="tip"}
2929

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

3333
```kotlin
3434
MutableList<Int>.() -> Unit
@@ -310,4 +310,4 @@ fun main() {
310310

311311
## Next step
312312

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

0 commit comments

Comments
 (0)