Skip to content

Commit 1fea93e

Browse files
committed
fix spelling
1 parent 9a9d57b commit 1fea93e

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 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] }))
@@ -442,7 +442,7 @@ The `api` and `apiVoid` APIs return an `ApiResult<Response>` which holds both su
442442
```typescript
443443
const api = await client.api(new Hello({ name }))
444444
if (api.succeeded) {
445-
console.log(`The API succeded:`, api.response)
445+
console.log(`The API succeeded:`, api.response)
446446
} else if (api.error) {
447447
console.log(`The API failed:`, api.error)
448448
}
@@ -455,7 +455,7 @@ const submit = async (e:HTMLFormElement) => {
455455
const form = e.currentTarget as HTMLFormElement
456456
const api = await client.apiForm(new CreateContact(), new FormData(form))
457457
if (api.succeeded) {
458-
console.log(`The API succeded:`, api.response)
458+
console.log(`The API succeeded:`, api.response)
459459
} else if (api.error) {
460460
console.log(`The API failed:`, api.error)
461461
}
@@ -570,7 +570,7 @@ Configured in [Configure.BackgroundJobs.cs](MyApp/Configure.BackgroundJobs.cs) u
570570
- `npx okai Feature.d.ts`
571571
- `npm run migrate`
572572

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

575575
## Admin Features
576576

0 commit comments

Comments
 (0)