Skip to content

Commit

Permalink
Correcting Escaped Code Example (#5409)
Browse files Browse the repository at this point in the history
  • Loading branch information
shery authored Nov 3, 2023
1 parent f869295 commit 67add2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ The above query will match any user whose name starts with a character followed
const users = await prisma.user.findMany({
where: {
name: {
startsWith: '\_benny', // note that the `_` character is escaped
startsWith: '\\_benny', // note that the `_` character is escaped, preceding `\` with `\` when included in a string
},
},
})
Expand Down

1 comment on commit 67add2f

@vercel
Copy link

@vercel vercel bot commented on 67add2f Nov 3, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

docs – ./

prisma2-docs.vercel.app
docs-git-main-prisma.vercel.app
docs-prisma.vercel.app

Please sign in to comment.