From 6052036e004cd54ac5bf84c45d035ce74f9cdec3 Mon Sep 17 00:00:00 2001 From: Rohan Godha Date: Tue, 24 Sep 2024 14:52:18 -0400 Subject: [PATCH] typos/formatting --- .changeset/lovely-pianos-breathe.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.changeset/lovely-pianos-breathe.md b/.changeset/lovely-pianos-breathe.md index 39a70127dcad..d0d2df7923a6 100644 --- a/.changeset/lovely-pianos-breathe.md +++ b/.changeset/lovely-pianos-breathe.md @@ -50,9 +50,6 @@ const cats = defineCollection({ }); ``` -```typescript -``` - And it continues to work with maps of `id` to `data` ```yaml bubbles: @@ -64,5 +61,8 @@ finn: ``` ```typescript -const fish = defineCollection({ loader: file("src/data/fish.yaml"), schema: z.object({ breed: z.string(), age: z.number() }) }); +const fish = defineCollection({ + loader: file("src/data/fish.yaml"), + schema: z.object({ breed: z.string(), age: z.number() }) +}); ```