From 91fbc5160642c21a03107a9a66d2841d732e0ecd Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Thu, 30 Apr 2026 11:46:01 +0100 Subject: [PATCH] Improve `validateSchema` comment --- src/json/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json/index.ts b/src/json/index.ts index 2a464ef05..640059efc 100644 --- a/src/json/index.ts +++ b/src/json/index.ts @@ -79,7 +79,7 @@ export type FromSchema = { }; /** - * Validates `obj` against `schema`. + * Validates that `obj` satisfies at least `schema`. Additional keys are accepted. * * @param schema The schema to validate against. * @param obj The object to validate.