From 488e1ef2c1dd35946aba7bb25c895e04c00a1a24 Mon Sep 17 00:00:00 2001 From: Prentice Wongvibulsin Date: Wed, 31 May 2017 10:17:46 -0700 Subject: [PATCH] Update README.md i think your dependency is wrong? `ktor-host-jetty` didn't work for me but `ktor-jetty` (like you have in the maven config) did work. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 405c89206b..2c974516e8 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ dependency: dependencies { compile "org.jetbrains.ktor:ktor-core:$ktorVersion" // you may also need to include host implementation as well, for example - // compile "org.jetbrains.ktor:ktor-host-jetty:$ktorVersion" + // compile "org.jetbrains.ktor:ktor-jetty:$ktorVersion" } ```