In section [Filter](https://jooby.io/#router-handler-filter), from the Kotlin code, it suppose to be `use` not `filter`: ```kotlin { filter { // <------ this should be `use` .. .. } get("/") { "filter" } } ```