From e3a2d6f02acf1c7ce5926c5287eab3b6fb040b89 Mon Sep 17 00:00:00 2001 From: "@beer" <47961062+iiio2@users.noreply.github.com> Date: Thu, 24 Oct 2024 12:12:25 +0600 Subject: [PATCH] docs(server-routes): typo (#2808) --- docs/1.guide/2.routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.guide/2.routing.md b/docs/1.guide/2.routing.md index 350de4eac7..4a8c2e7390 100644 --- a/docs/1.guide/2.routing.md +++ b/docs/1.guide/2.routing.md @@ -275,7 +275,7 @@ You can use the [utilities available in H3](https://h3.unjs.io/guide/event-handl The way errors are sent back to the client depends on the route's path. For most routes `Content-Type` is set to `text/html` by default and a simple html error page is delievered. If the route starts with `/api/` (either because it is placed in `api/` or `routes/api/`) the default will change to `application/json` and a JSON object will be sent. -This behaviour can be overridden by some request properties (eg.: `Accept` or `User-Agent` headers). +This behaviour can be overridden by some request properties (e.g.: `Accept` or `User-Agent` headers). ## Route Rules