From 5107658c252c798bb4e36d960ad41c76a57a2c2a Mon Sep 17 00:00:00 2001 From: Joel Kaasinen Date: Wed, 15 Mar 2023 13:20:02 +0200 Subject: [PATCH] fix: typo on examples/http-swagger --- examples/http-swagger/src/example/server.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/http-swagger/src/example/server.clj b/examples/http-swagger/src/example/server.clj index 5f3d876c..79bcd15b 100644 --- a/examples/http-swagger/src/example/server.clj +++ b/examples/http-swagger/src/example/server.clj @@ -53,7 +53,7 @@ ["/openapi.json" {:get {:no-doc true :openapi {:info {:title "my-api" - :description "openap-docs with reitit-http" + :description "openapi3-docs with reitit-http" :version "0.0.1"} ;; used in /secure APIs below :components {:securitySchemes {"auth" {:type :apiKey @@ -175,9 +175,9 @@ (swagger-ui/create-swagger-ui-handler {:path "/" :config {:validatorUrl nil - :urls [{:name "swagger", :url "swagger.json"} - {:name "openapi", :url "openapi.json"}] - :urls.primaryName "openapi" + :urls [{:name "swagger", :url "swagger.json"} + {:name "openapi", :url "openapi.json"}] + :urls.primaryName "openapi" :operationsSorter "alpha"}}) (ring/create-default-handler)) {:executor sieppari/executor}))