From 3be3bac9b9388a43e2c087f56fe3521bf0f98c19 Mon Sep 17 00:00:00 2001 From: Zac Bentley Date: Tue, 21 Nov 2023 22:16:12 -0500 Subject: [PATCH] Fix typos Two minor misspellings. --- examples/custom_schema/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom_schema/src/main.rs b/examples/custom_schema/src/main.rs index b7792d85..cd07526c 100644 --- a/examples/custom_schema/src/main.rs +++ b/examples/custom_schema/src/main.rs @@ -66,7 +66,7 @@ fn custom_openapi_spec() -> OpenApi { openapi: OpenApi::default_version(), info: Info { title: "The best API ever".to_owned(), - description: Some("This is the best API every, please use me!".to_owned()), + description: Some("This is the best API ever, please use me!".to_owned()), terms_of_service: Some( "https://github.com/GREsau/okapi/blob/master/LICENSE".to_owned(), ), @@ -96,7 +96,7 @@ fn custom_openapi_spec() -> OpenApi { ..Default::default() }, ], - // Add paths that do not exist in Rocket (or add extra into to existing paths) + // Add paths that do not exist in Rocket (or add extra info to existing paths) paths: { indexmap! { "/home".to_owned() => PathItem{