Skip to content

Commit

Permalink
docs: correct typo (#3425)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernest committed Apr 21, 2024
1 parent 890556e commit 8b8734d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2698,7 +2698,7 @@ z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>
// ReadonlySet<string>
```

### `.pipe`
Expand Down
2 changes: 1 addition & 1 deletion deno/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2698,7 +2698,7 @@ z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>
// ReadonlySet<string>
```

### `.pipe`
Expand Down

0 comments on commit 8b8734d

Please sign in to comment.