Skip to content

Commit f55f205

Browse files
Update request-lifecycle.md
1 parent 7eeca0c commit f55f205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/faq/request-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Nest applications handle requests and produce responses in a sequence we refer t
66

77
Middleware is executed in a particular sequence. First, Nest runs globally bound middleware (such as middleware bound with `app.use`) and then it runs [module bound middleware](/middleware), which are determined on paths. Middleware are run sequentially in the order they are bound, similar to the way middleware in Express works.
88

9-
#### Guard
9+
#### Guards
1010

1111
Guard execution starts with global guards, then proceeds to controller guards, and finally to route guards. As with middleware, guards run in the order in which they are bound. For example:
1212

0 commit comments

Comments
 (0)