Skip to content

Commit

Permalink
chore(client): update JSDoc docs links
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Aug 19, 2020
1 parent 1a00357 commit fd7f166
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/packages/client/src/generation/TSClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ class PrismaClientClass implements Generatable {
* \`\`\`
*
*
* Read more in our [docs](https://github.com/prisma/prisma/blob/master/docs/prisma-client-js/api.md).
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client).
*/`
}
public toTS(): string {
Expand Down Expand Up @@ -613,7 +613,7 @@ ${indent(this.jsDoc, tab)}
* const result = await prisma.executeRaw('UPDATE User SET cool = $1 WHERE id = $2 ;', true, 1)
* \`\`\`
*
* Read more in our [docs](https://github.com/prisma/prisma/blob/master/docs/prisma-client-js/api.md#raw-database-access).
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
*/
$executeRaw<T = any>(query: string | TemplateStringsArray, ...values: any[]): Promise<number>;
Expand All @@ -632,7 +632,7 @@ ${indent(this.jsDoc, tab)}
* const result = await prisma.queryRaw('SELECT * FROM User WHERE id = $1 OR email = $2;', 1, 'ema.il')
* \`\`\`
*
* Read more in our [docs](https://github.com/prisma/prisma/blob/master/docs/prisma-client-js/api.md#raw-database-access).
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/raw-database-access).
*/
$queryRaw<T = any>(query: string | TemplateStringsArray, ...values: any[]): Promise<T>;
Expand Down

0 comments on commit fd7f166

Please sign in to comment.