Skip to content

Commit f9ae6ab

Browse files
committed
fix spelling
1 parent bba70e2 commit f9ae6ab

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

8787
**Development Mode:**
88-
- `dotnet watch` from MyApp starts .NET (port 5001) and Angular dev server (port 4200), accesible via `https://127.0.0.1:4200`
88+
- `dotnet watch` from MyApp starts .NET (port 5001) and Angular dev server (port 4200), accessible via `https://127.0.0.1:4200`
8989
- ASP.NET Core proxies requests to Angular dev server via `NodeProxy` (configured in [Program.cs](MyApp/Program.cs#L41))
9090
- Hot Module Replacement (HMR) enabled via WebSocket proxying using `MapNotFoundToNode`, `MapViteHmr`, `RunNodeProcess`, `MapFallbackToNode` in [Program.cs](MyApp/Program.cs)
9191

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

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

395395
```typescript
396396
const api = client.api(new QueryBookings({ minCost:100, ids:[1,2,3] }))
@@ -440,7 +440,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
440440
```typescript
441441
const api = await client.api(new Hello({ name }))
442442
if (api.succeeded) {
443-
console.log(`The API succeded:`, api.response)
443+
console.log(`The API succeeded:`, api.response)
444444
} else if (api.error) {
445445
console.log(`The API failed:`, api.error)
446446
}
@@ -453,7 +453,7 @@ const submit = async (e: Event) => {
453453
const form = e.currentTarget as HTMLFormElement
454454
const api = await client.apiForm(new CreateContact(), new FormData(form))
455455
if (api.succeeded) {
456-
console.log(`The API succeded:`, api.response)
456+
console.log(`The API succeeded:`, api.response)
457457
} else if (api.error) {
458458
console.log(`The API failed:`, api.error)
459459
}
@@ -496,7 +496,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
496496
- `npx okai Feature.d.ts`
497497
- `npm run migrate`
498498

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

501501
## Admin Features
502502

0 commit comments

Comments
 (0)