Skip to content

Commit 82b7cef

Browse files
committed
fix spelling
1 parent c9e9e80 commit 82b7cef

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
@@ -110,7 +110,7 @@ npx okai rm Table.d.ts
110110
### Hybrid Development/Production Model
111111

112112
**Development Mode:**
113-
- `dotnet watch` from MyApp starts .NET (port 5001) and Vite dev server (port 5173), accesible via `https://127.0.0.1:5173`
113+
- `dotnet watch` from MyApp starts .NET (port 5001) and Vite dev server (port 5173), accessible via `https://127.0.0.1:5173`
114114
- ASP.NET Core proxies requests to Vite dev server via `NodeProxy` (configured in [Program.cs](MyApp/Program.cs#L41))
115115
- Hot Module Replacement (HMR) enabled via WebSocket proxying using `MapNotFoundToNode`, `MapViteHmr`, `RunNodeProcess`, `MapFallbackToNode` in [Program.cs](MyApp/Program.cs)
116116

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

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

452452
```typescript
453453
const api = client.api(new QueryBookings({ minCost:100, ids:[1,2,3] }))
@@ -497,7 +497,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
497497
```typescript
498498
const api = await client.api(new Hello({ name }))
499499
if (api.succeeded) {
500-
console.log(`The API succeded:`, api.response)
500+
console.log(`The API succeeded:`, api.response)
501501
} else if (api.error) {
502502
console.log(`The API failed:`, api.error)
503503
}
@@ -510,7 +510,7 @@ const submit = async (e: Event) => {
510510
const form = e.currentTarget as HTMLFormElement
511511
const api = await client.apiForm(new CreateContact(), new FormData(form))
512512
if (api.succeeded) {
513-
console.log(`The API succeded:`, api.response)
513+
console.log(`The API succeeded:`, api.response)
514514
} else if (api.error) {
515515
console.log(`The API failed:`, api.error)
516516
}
@@ -553,7 +553,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
553553
- `npx okai Feature.d.ts`
554554
- `npm run migrate`
555555

556-
Docs: [AutoQuery Dev Worfklow](https://react-templates.net/docs/autoquery/dev-workflow)
556+
Docs: [AutoQuery Dev Workflow](https://react-templates.net/docs/autoquery/dev-workflow)
557557

558558
## Admin Features
559559

0 commit comments

Comments
 (0)