Skip to content

Commit 51c2103

Browse files
authored
Fix typo in lifecycle.md (#9492)
1 parent 474701c commit 51c2103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lifecycle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Next, the incoming request is sent to either the HTTP kernel or the console kern
3333

3434
The HTTP kernel defines an array of `bootstrappers` that will be run before the request is executed. These bootstrappers configure error handling, configure logging, [detect the application environment](/docs/{{version}}/configuration#environment-configuration), and perform other tasks that need to be done before the request is actually handled. Typically, these classes handle internal Laravel configuration that you do not need to worry about.
3535

36-
The HTTP kernel is also responsible for passing the request though the application's middleware stack. These middleware handle reading and writing the [HTTP session](/docs/{{version}}/session), determining if the application is in maintenance mode, [verifying the CSRF token](/docs/{{version}}/csrf), and more. We'll talk more about these soon.
36+
The HTTP kernel is also responsible for passing the request through the application's middleware stack. These middleware handle reading and writing the [HTTP session](/docs/{{version}}/session), determining if the application is in maintenance mode, [verifying the CSRF token](/docs/{{version}}/csrf), and more. We'll talk more about these soon.
3737

3838
The method signature for the HTTP kernel's `handle` method is quite simple: it receives a `Request` and returns a `Response`. Think of the kernel as being a big black box that represents your entire application. Feed it HTTP requests and it will return HTTP responses.
3939

0 commit comments

Comments
 (0)