Skip to content

Commit 3194093

Browse files
committed
chore: fix non-null typo in scope functions
1 parent de76bbd commit 3194093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/scope-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ fun main() {
347347
```
348348
{kotlin-runnable="true" kotlin-min-compiler-version="1.3"}
349349

350-
`let` is often used to execute a code block containing non-null values. To perform actions on a non-null object, use
350+
`let` is often used to execute a code block containing non-null values. To perform actions on a nullable object, use
351351
the [safe call operator `?.`](null-safety.md#safe-call-operator) on it and call `let` with the actions in its lambda.
352352

353353
```kotlin

0 commit comments

Comments
 (0)