Skip to content

Commit

Permalink
fix: component.mdx docs (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
stearm authored Sep 12, 2023
1 parent 95d77ff commit ea6d857
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/docs/pages/internals/components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const movieDB = await create({
})

await insert(movieDB, {
title: 'Harry Potter and the Philosopher's Stone',
title: "Harry Potter and the Philosopher's Stone",
director: 'Chris Columbus',
plot: 'Harry Potter, an eleven-year-old orphan, discovers that he is a wizard and is invited to study at Hogwarts. Even as he escapes a dreary life and enters a world of magic, he finds trouble awaiting him.',
year: 2001,
Expand Down Expand Up @@ -370,7 +370,7 @@ const movieDB = await create({
// This will throw
await insert(movieDB, {
title: 'Harry Potter and the Philosopher's Stone',
title: "Harry Potter and the Philosopher's Stone",
director: 42,
});
```
Expand Down Expand Up @@ -403,7 +403,7 @@ const movieDB = await create({
// This will print something like "1679476550629"
await insert(movieDB, {
title: 'Harry Potter and the Philosopher's Stone',
title: "Harry Potter and the Philosopher's Stone",
director: 'Chris Columbus',
});
```
Expand Down Expand Up @@ -463,7 +463,7 @@ const movieDB = await create({
})
await insert(movieDB, {
title: 'Harry Potter and the Philosopher's Stone',
title: "Harry Potter and the Philosopher's Stone",
director: 'Chris Columbus',
plot: 'Harry Potter, an eleven-year-old orphan, discovers that he is a wizard and is invited to study at Hogwarts. Even as he escapes a dreary life and enters a world of magic, he finds trouble awaiting him.',
year: 2001,
Expand Down

1 comment on commit ea6d857

@vercel
Copy link

@vercel vercel bot commented on ea6d857 Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.