Skip to content

Commit f9e824b

Browse files
Fixed a typo in extending.md
1 parent 9937ecf commit f9e824b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Each of these managers includes an `extend` method which may be used to easily i
3030
<a name="where-to-extend"></a>
3131
## Where To Extend
3232

33-
This documentation covers how to extend a variety of Laravel's components, but you may be wondering where to place your extension code. Like most other bootstrapping code, you are free to place some extensions in your `start` files. Cache and Auth extensions are good candidates for this approach. Other extensions, like `Session`, must be placed in the `register` mehtod of a service provider since they are needed very early in the request life-cycle.
33+
This documentation covers how to extend a variety of Laravel's components, but you may be wondering where to place your extension code. Like most other bootstrapping code, you are free to place some extensions in your `start` files. Cache and Auth extensions are good candidates for this approach. Other extensions, like `Session`, must be placed in the `register` method of a service provider since they are needed very early in the request life-cycle.
3434

3535
<a name="cache"></a>
3636
## Cache

0 commit comments

Comments
 (0)