Skip to content

Commit 8d4f910

Browse files
committed
fix spelling
1 parent ddd31dd commit 8d4f910

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

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

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

375375
```typescript
376376
const api = client.api(new QueryBookings({ minCost:100, ids:[1,2,3] }))
@@ -446,7 +446,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
446446
```typescript
447447
const api = await client.api(new Hello({ name }))
448448
if (api.succeeded) {
449-
console.log(`The API succeded:`, api.response)
449+
console.log(`The API succeeded:`, api.response)
450450
} else if (api.error) {
451451
console.log(`The API failed:`, api.error)
452452
}
@@ -459,7 +459,7 @@ const submit = async (e: React.FormEvent) => {
459459
const form = e.currentTarget as HTMLFormElement
460460
const api = await client.apiForm(new CreateContact(), new FormData(form))
461461
if (api.succeeded) {
462-
console.log(`The API succeded:`, api.response)
462+
console.log(`The API succeeded:`, api.response)
463463
} else if (api.error) {
464464
console.log(`The API failed:`, api.error)
465465
}
@@ -588,7 +588,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
588588
- `npx okai Feature.d.ts`
589589
- `npm run migrate`
590590
591-
Docs: [AutoQuery Dev Worfklow](https://react-templates.net/docs/autoquery/dev-workflow)
591+
Docs: [AutoQuery Dev Workflow](https://react-templates.net/docs/autoquery/dev-workflow)
592592
593593
## Admin Features
594594

0 commit comments

Comments
 (0)