From d6cb6d76d547c9a1e593e4bb0825dfeecd28cc0b Mon Sep 17 00:00:00 2001 From: Mathew Polzin Date: Sat, 13 Apr 2024 13:57:32 -0500 Subject: [PATCH] Update phrasing in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 453707b66..16ffa8797 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ let encodedOpenAPIDoc = try encoder.encode(openAPIDoc) ### Validating OpenAPI Documents Thanks to Swift's type system, the vast majority of the OpenAPI Specification is represented by the types of OpenAPIKit -- you cannot create bad OpenAPI docuements in the first place and decoding a document will fail with generally useful errors. -That being said, there are a small number of additional checks that you can perform to really put any concerns to bed. +That being said, there are a small number of additional checks that you can perform to really put any concerns to rest. ```swift let openAPIDoc: OpenAPI.Document = ...