Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4187dc8

Browse files
authoredMay 31, 2022
Merge pull request #178 from ryanzidago/patch-1
Replace ambiguous code example in the documentation
2 parents 12d7677 + a6038e9 commit 4187dc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎docs/content/Tutorials/ktor.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ Replace `x.x.x` with the latest version [![Maven Central](https://img.shields.io
4646
}
4747
```
4848

49-
The only thing left is installing the GraphQL feature onto our server by opening `src/Application.kt` and add these lines to the `Application.module` function
49+
The only thing left is installing the GraphQL feature onto our server by opening `src/Application.kt` and use these lines as the `Application.module` function
5050

5151
=== "Application.kt"
5252
```kotlin
5353
fun Application.module(testing: Boolean = false) {
5454
install(GraphQL) {
55+
configureRouting()
5556
playground = true
5657
schema {
5758
query("hello") {

0 commit comments

Comments
 (0)
Please sign in to comment.