Skip to content

Commit 9950de8

Browse files
committed
Small fixes for gRPC doc
1 parent 5adec48 commit 9950de8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/wire_grpc.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ You can configure how your services are generated via the [Gradle plugin][gradle
1111

1212
```groovy
1313
wire {
14-
kotlin { // Kotlin target will generate code for services.
14+
// Kotlin target will generate code for services.
15+
kotlin {
1516
// `client` to generate interfaces best suited to sending outbound calls.
1617
// `server` to generate interfaces best suited to receiving inbound calls.
1718
rpcRole = 'server'
@@ -137,12 +138,14 @@ interface RouteGuideServer : Service {
137138
The server can use Kotlin coroutines' suspend and Channels mechanisms to execute suspending network
138139
calls.
139140

140-
### Sample
141+
Sample
142+
------
141143

142144
Check out our [sample project][sampleProject] demonstrating bidirectional communication between an
143145
Android application and a server.
144146

145-
### Get it
147+
Get it
148+
------
146149

147150
Use Wire runtime Gradle coordinates:
148151
```groovy

0 commit comments

Comments
 (0)