From 4379e312a499832408081333804112e503d36936 Mon Sep 17 00:00:00 2001 From: sinclair Date: Thu, 23 Mar 2023 00:16:24 +0900 Subject: [PATCH] Revision 0.26.0 --- src/typebox.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typebox.ts b/src/typebox.ts index bff6d38..92e57a1 100644 --- a/src/typebox.ts +++ b/src/typebox.ts @@ -1733,7 +1733,7 @@ export namespace TypeClone { if (IsObject(value)) return Object(value) return value } - /** Clones a type. This function will omit non-self referential identifiers on the cloned type. */ + /** Clones a type. */ export function Clone(schema: T, options: SchemaOptions): T { return { ...Visit(schema), ...options } }