From 929dca156e58b7dc7e90ceb521d3e0d282501632 Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 10 Jan 2025 18:53:34 +0000 Subject: [PATCH] docs(readme): grammar fixes Signed-off-by: Frazer Smith --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7b4bfb..21dac05 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ app.inject({ }) ``` -Different content types responses are supported by `@fastify/response-validation`, `@fastify/swagger` and `fastify`. Please use `content` for the response otherwise Fastify itself will fail to compile the schema: +Different content types responses are supported by `@fastify/response-validation`, `@fastify/swagger`, and `fastify`. Please use `content` for the response otherwise Fastify itself will fail to compile the schema: ```js { response: { @@ -110,7 +110,7 @@ const ajv = new Ajv() await fastify.register(responseValidator, { ajv }) ``` -By default the response validation is enabled on every route that has a response schema defined. If needed you can disable it all together with `responseValidation: false`: +By default, the response validation is enabled on every route that has a response schema defined. If needed you can disable it all together with `responseValidation: false`: ```js import responseValidator from '@fastify/response-validation'