Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

fixed some file #8

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ env
node_modules
docs
yarn.lock
package-lock.json
2 changes: 1 addition & 1 deletion src/guide/basics/middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ async def halt_response(request, response):
```
:---

## Order of execution
#### Order of execution
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this and not H2?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

look at this file : basics/headers.md Tokens and Proxy headers are part of Headers and they are H4 title.
In like manner, this also should be H4 title


Request middleware is executed in the order declared. Response middleware is executed in **reverse order**.

Expand Down
2 changes: 1 addition & 1 deletion src/guide/basics/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ But what is it? And how do we use it?

---:1

The most basic way to wire up a handler to an endpoing is with `app.add_route()`.
The most basic way to wire up a handler to an endpoint is with `app.add_route()`.

See [API docs]() for more details.
:--:1
Expand Down