Skip to content

Commit

Permalink
docs: Remove invalid semicolon in ERROR_HANDLING.md (#3857)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek authored Dec 10, 2024
1 parent 207205c commit 48f1c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ERROR_HANDLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const person = z.object({
address: z.object({
line1: z.string(),
zipCode: z.number().min(10000), // American 5-digit code
}).strict(); // do not allow unrecognized keys
}).strict() // do not allow unrecognized keys
});
```

Expand Down

0 comments on commit 48f1c47

Please sign in to comment.