Skip to content

Commit 664698f

Browse files
committed
fix spelling
1 parent 8405c0c commit 664698f

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 Vite dev server (port 5173), accesible via `https://localhost:5001`
80+
- `dotnet watch` from MyApp starts .NET (port 5001) and Vite dev server (port 5173), accessible via `https://localhost:5001`
8181
- ASP.NET Core proxies requests to Vite dev server via `NodeProxy` (configured in [Program.cs](MyApp/Program.cs#L41))
8282
- Hot Module Replacement (HMR) enabled via WebSocket proxying using `MapNotFoundToNode`, `MapViteHmr`, `RunNodeProcess`, `MapFallbackToNode` in [Program.cs](MyApp/Program.cs)
8383

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

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

373373
```typescript
374374
const api = client.api(new QueryBookings({ minCost:100, ids:[1,2,3] }))
@@ -444,7 +444,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
444444
```typescript
445445
const api = await client.api(new Hello({ name }))
446446
if (api.succeeded) {
447-
console.log(`The API succeded:`, api.response)
447+
console.log(`The API succeeded:`, api.response)
448448
} else if (api.error) {
449449
console.log(`The API failed:`, api.error)
450450
}
@@ -457,7 +457,7 @@ const submit = async (e: React.FormEvent) => {
457457
const form = e.currentTarget as HTMLFormElement
458458
const api = await client.apiForm(new CreateContact(), new FormData(form))
459459
if (api.succeeded) {
460-
console.log(`The API succeded:`, api.response)
460+
console.log(`The API succeeded:`, api.response)
461461
} else if (api.error) {
462462
console.log(`The API failed:`, api.error)
463463
}
@@ -586,7 +586,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
586586
- `npx okai Feature.d.ts`
587587
- `npm run migrate`
588588
589-
Docs: [AutoQuery Dev Worfklow](https://react-templates.net/docs/autoquery/dev-workflow)
589+
Docs: [AutoQuery Dev Workflow](https://react-templates.net/docs/autoquery/dev-workflow)
590590
591591
## Admin Features
592592

0 commit comments

Comments
 (0)