Skip to content

Commit 12e5eba

Browse files
committed
fix spelling
1 parent 2c75e6a commit 12e5eba

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ npx okai rm Table.d.ts
7777
### Hybrid Development/Production Model
7878

7979
**Development Mode:**
80-
- `dotnet watch` from MyApp starts .NET (port 5001) and Next.js dev server (port 3000), accesible via `https://localhost:5001`
80+
- `dotnet watch` from MyApp starts .NET (port 5001) and Next.js dev server (port 3000), accessible via `https://localhost:5001`
8181
- ASP.NET Core proxies requests to Next.js dev server via `NodeProxy` (configured in [Program.cs](MyApp/Program.cs#L41))
8282
- Hot Module Replacement (HMR) enabled via WebSocket proxying using `MapNotFoundToNode`, `MapNextHmr`, `RunNodeProcess`, `MapFallbackToNode` in [Program.cs](MyApp/Program.cs)
8383

@@ -374,7 +374,7 @@ AutoQuery also matches on pluralized fields where `Ids` matches `Id` and applies
374374
const api = client.api(new QueryBookings({ ids:[1,2,3] }))
375375
```
376376

377-
Multiple Request DTO properties applies mutliple **AND** filters, e.g:
377+
Multiple Request DTO properties applies multiple **AND** filters, e.g:
378378

379379
```typescript
380380
const api = client.api(new QueryBookings({ minCost:100, ids:[1,2,3] }))
@@ -450,7 +450,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
450450
```typescript
451451
const api = await client.api(new Hello({ name }))
452452
if (api.succeeded) {
453-
console.log(`The API succeded:`, api.response)
453+
console.log(`The API succeeded:`, api.response)
454454
} else if (api.error) {
455455
console.log(`The API failed:`, api.error)
456456
}
@@ -463,7 +463,7 @@ const submit = async (e: React.FormEvent) => {
463463
const form = e.currentTarget as HTMLFormElement
464464
const api = await client.apiForm(new CreateContact(), new FormData(form))
465465
if (api.succeeded) {
466-
console.log(`The API succeded:`, api.response)
466+
console.log(`The API succeeded:`, api.response)
467467
} else if (api.error) {
468468
console.log(`The API failed:`, api.error)
469469
}
@@ -592,7 +592,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
592592
- `npx okai Feature.d.ts`
593593
- `npm run migrate`
594594
595-
Docs: [AutoQuery Dev Worfklow](https://react-templates.net/docs/autoquery/dev-workflow)
595+
Docs: [AutoQuery Dev Workflow](https://react-templates.net/docs/autoquery/dev-workflow)
596596
597597
## Admin Features
598598

0 commit comments

Comments
 (0)