Skip to content

Commit a801ddd

Browse files
kantunicolinhacks
andauthored
Fix broken logo link (#3974)
* Fix broken logo link * Use absolute URL * Absolute url --------- Co-authored-by: Colin McDonnell <[email protected]>
1 parent d114394 commit a801ddd

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="logo.svg" width="200px" align="center" alt="Zod logo" />
2+
<img src="https://raw.githubusercontent.com/colinhacks/zod/main/logo.svg" width="200px" align="center" alt="Zod logo" />
33
<h1 align="center">Zod</h1>
44
<p align="center">
55
<a href="https://zod.dev">zod.dev</a>

deno/lib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="logo.svg" width="200px" align="center" alt="Zod logo" />
2+
<img src="https://raw.githubusercontent.com/colinhacks/zod/main/logo.svg" width="200px" align="center" alt="Zod logo" />
33
<h1 align="center">Zod</h1>
44
<p align="center">
55
<a href="https://zod.dev">zod.dev</a>

playground.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
import { z } from "./src";
22

33
z;
4+
5+
const Schema = z
6+
.object({
7+
limit: z.number().default(0),
8+
})
9+
.default({});
10+
type Schema = z.infer<typeof Schema>;

0 commit comments

Comments
 (0)