Skip to content

Commit c6673f9

Browse files
committed
fix: docs: 140-shared-extensions.mdx: add missing space
1 parent 7008e9b commit c6673f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/200-orm/200-prisma-client/300-client-extensions/140-shared-extensions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const xprisma = prisma.$extends(findOrCreate)
3535
const user = await xprisma.user.findOrCreate()
3636
```
3737

38-
When you call a method in an extension, use the constant name from your `$extends` statement, not `prisma`. In the above example,`xprisma.user.findOrCreate` works, but `prisma.user.findOrCreate` does not, because the original `prisma` is not modified.
38+
When you call a method in an extension, use the constant name from your `$extends` statement, not `prisma`. In the above example, `xprisma.user.findOrCreate` works, but `prisma.user.findOrCreate` does not, because the original `prisma` is not modified.
3939

4040
## Create a shareable extension
4141

0 commit comments

Comments
 (0)