Skip to content

Commit 9befc0f

Browse files
committed
📘 doc: fix wrong spelling
2 parents e8b427b + 31e6bd6 commit 9befc0f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/blog/with-prisma.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ bunx prisma init
9494

9595
`bunx` is a bun command equivalent to `npx`, which allows us to execute package bin.
9696

97-
Once setup, we can see that Prisma will update `.env` file and generate a folder named **prisma** with **prisma.schema** as a file inside.
97+
Once setup, we can see that Prisma will update `.env` file and generate a folder named **prisma** with **schema.prisma** as a file inside.
9898

99-
**prisma.schema** is an database model defined with Prisma's schema language.
99+
**schema.prisma** is an database model defined with Prisma's schema language.
100100

101-
Let's update our **prisma.schema** file like this for a demonstration:
101+
Let's update our **schema.prisma** file like this for a demonstration:
102102
```ts
103103
generator client {
104104
provider = "prisma-client-js"

docs/concept/group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Instead of writing many same prefixes, you can group them.
2626
Grouping allows you to combine multiple prefixes into one.
2727
```typescript
2828
app.group('/user', app => app
29-
.post('/sign-in, signIn)
29+
.post('/sign-in', signIn)
3030
.post('/sign-up', signUp)
3131
.post('/profile', getProfile)
3232
)

docs/plugins/eden/fetch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Then import the server type, and consume Elysia API on client:
4646
import { edenFetch } from '@elysiajs/eden'
4747
import type { App } from './server'
4848

49-
const app = edenFetch<App>('http://localhost:8080')
49+
const fetch = edenFetch<App>('http://localhost:8080')
5050

5151
// response type: 'Hi Elysia'
5252
const pong = await fetch('/', {})

0 commit comments

Comments
 (0)