From 8bbb568d46404f937d1f300ff36befd16c0cd5b8 Mon Sep 17 00:00:00 2001 From: AmbrishRamachandiran Date: Mon, 30 Sep 2024 13:44:41 +0530 Subject: [PATCH] fixing grammer mistakes in openapi-docs Signed-off-by: AmbrishRamachandiran --- docs/openapi/01-getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/openapi/01-getting-started.md b/docs/openapi/01-getting-started.md index df0f72194b..156df9bd17 100644 --- a/docs/openapi/01-getting-started.md +++ b/docs/openapi/01-getting-started.md @@ -14,7 +14,7 @@ Difficulty: Medium The goal of this tutorial is to give you exposure to tools that more tightly couple your OpenAPI specification and plugin lifecycle. The tools we'll be presenting were created by the OpenAPI tooling project area and allow you to create, -1. A typed `express` router that provides strong guardrails during development for input and output values. Support for query, parameters, and request body, as well as experimental support for headers and cookies. +1. A typed `express` router that provides strong guardrails during development for input and output values. Support for query, path parameters, and request body, as well as experimental support for headers and cookies. 2. An auto-generated client to interact with your plugin's backend. Support for all request types, parameters, and body, as well as return types. Provides a low-level interface to allow more customization by higher-level libraries. 3. Validation and verification tooling to ensure your API and specification stay in sync. Includes testing against your unit tests.