We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c56a4f6 commit a0abcc0Copy full SHA for a0abcc0
packages/docs/content/metadata.mdx
@@ -151,7 +151,7 @@ Metadata is associated with a *specific schema instance.* This is important to k
151
152
```ts
153
const A = z.string().meta({ description: "A cool string" });
154
-A.meta(); // => { hello: "true" }
+A.meta(); // => { description: "A cool string" }
155
156
const B = A.refine(_ => true);
157
B.meta(); // => undefined
0 commit comments