diff --git a/playground/src/main/kotlin/io/bkbn/kompendium/playground/ExceptionPlayground.kt b/playground/src/main/kotlin/io/bkbn/kompendium/playground/ExceptionPlayground.kt index 95876f4ec..088ae008d 100644 --- a/playground/src/main/kotlin/io/bkbn/kompendium/playground/ExceptionPlayground.kt +++ b/playground/src/main/kotlin/io/bkbn/kompendium/playground/ExceptionPlayground.kt @@ -78,11 +78,11 @@ private fun Route.locationDocumentation() { responseCode(HttpStatusCode.OK) responseType() description("Will return whether or not the user is real 😱") - canRespond { - description("Bad Things Happened") - responseCode(HttpStatusCode.InternalServerError) - responseType() - } + } + canRespond { + description("Bad Things Happened") + responseCode(HttpStatusCode.InternalServerError) + responseType() } } }