Skip to content

Commit 78c6541

Browse files
committed
[Workers AI] Update content to follow the style guide recommendation
1 parent ca6f513 commit 78c6541

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/content/docs/workers-ai/tutorials/build-ai-interview-practice-tool.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ export interface InterviewInput {
172172

173173
Next, we will set up custom error types to handle different kinds of errors that may occur in our application. This includes:
174174

175-
- Database errors (e.g., connection issues, query failures)
176-
- Interview-related errors (e.g., invalid input, transcription failures)
177-
- Authentication errors (e.g., invalid sessions)
175+
- Database errors (for example, connection issues, query failures)
176+
- Interview-related errors (for example, invalid input, transcription failures)
177+
- Authentication errors (for example, invalid sessions)
178178

179179
Create the following `src/errors.ts` file:
180180

@@ -336,7 +336,7 @@ app.use("*", requireAuth);
336336
// These will be mounted under /api/v1/auth/
337337
api.route("/auth", configureAuthRoutes());
338338

339-
// Mount all API routes under the version prefix (e.g. /api/v1)
339+
// Mount all API routes under the version prefix (for example, /api/v1)
340340
// This lets us make breaking changes in v2 without affecting v1 users
341341
app.route("/api/v1", api);
342342

0 commit comments

Comments
 (0)