Skip to content

Commit fc80762

Browse files
committed
Fix typo
1 parent adb8c8a commit fc80762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/docs/reference/lambdas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ declare it for us under the name `it`:
175175
ints.filter { it > 0 } // this literal is of type '(it: Int) -> Boolean'
176176
```
177177

178-
We can explicitly return a value from the lambda using the [qualified return](returns.html#return-at-labels) syntax. Otherwise, the value of the last expression is implictly returned. Therefore, the two following snippets are equivalent:
178+
We can explicitly return a value from the lambda using the [qualified return](returns.html#return-at-labels) syntax. Otherwise, the value of the last expression is implicitly returned. Therefore, the two following snippets are equivalent:
179179

180180
``` kotlin
181181
ints.filter {

0 commit comments

Comments
 (0)