From b17ec32cd97542e90ae27231d8a8bce88b9e53b6 Mon Sep 17 00:00:00 2001 From: Renato Monteiro <45536168+monteiro-renato@users.noreply.github.com> Date: Tue, 10 Dec 2024 00:00:15 +0100 Subject: [PATCH] fix: small grammatical error in managing-schemas.md (#2508) --- docs/guide/managing-schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/managing-schemas.md b/docs/guide/managing-schemas.md index 4c860755c9..8923b36e27 100644 --- a/docs/guide/managing-schemas.md +++ b/docs/guide/managing-schemas.md @@ -88,7 +88,7 @@ app.post("/user", async (cxt) => { ::: warning Use single Ajv instance -It recommended to use a single Ajv instance for the whole application, so if you use validation in more than one module, you should: +It is recommended to use a single Ajv instance for the whole application, so if you use validation in more than one module, you should: - require Ajv in a separate module responsible for validation - compile all validators there