Skip to content

Commit b6cc058

Browse files
authored
Update README.md
1 parent 7efdbb7 commit b6cc058

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

AndroidAsync-Kotlin/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Since AndroidAsync and Ion operations all returned futures, you can simply call
66

77
```kotlin
88
suspend fun getTheRobotsTxt() {
9-
val googleRobots = Ion.with(context)
10-
.load("https://google.com/robots.txt")
11-
.asString()
12-
.await()
9+
val googleRobots = Ion.with(context)
10+
.load("https://google.com/robots.txt")
11+
.asString()
12+
.await()
1313

14-
val githubRobots = Ion.with(context)
15-
.load("https://google.com/robots.txt")
16-
.asString()
17-
.await()
14+
val githubRobots = Ion.with(context)
15+
.load("https://google.com/robots.txt")
16+
.asString()
17+
.await()
1818

1919
return googleRobots + githubRobots
2020
```

0 commit comments

Comments
 (0)