File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ the same as the C version. All the calls you'd expect in the libcurl library are
220
220
You can see the actual output because the call `curl_easy_perform` prints the result to the standard output. You could
221
221
hide this using `curl_easy_setopt`.
222
222
223
- > You can get the full project code in our [GitHub repository](https://github.com/Kotlin/ kotlin-hands-on- intro-kotlin-native).
223
+ > You can get the full project code in our [GitHub repository](https://github.com/kotlin-hands-on/ intro-kotlin-native).
224
224
>
225
225
{style="note"}
226
226
Original file line number Diff line number Diff line change @@ -110,14 +110,14 @@ Let's add a feature to your application so it can count the number of letters in
110
110
binaries {
111
111
executable {
112
112
entryPoint = " main"
113
- runTask?. standardInput = System .`in `
113
+ runTaskProvider?.configure { standardInput = System .`in ` }
114
114
}
115
115
}
116
116
}
117
117
// ...
118
118
}
119
119
```
120
- {initial-collapse-state="collapsed" collapsible="true" collapsed-title="runTask?. standardInput = System.` in ` "}
120
+ {initial-collapse-state="collapsed" collapsible="true" collapsed-title="runTaskProvider?.configure { standardInput = System.` in ` } "}
121
121
122
122
3 . Eliminate the whitespaces and count the letters:
123
123
You can’t perform that action at this time.
0 commit comments