diff --git a/docs/examples/advanced-example.md b/docs/examples/advanced-example.md index b9c498801..33166dc46 100644 --- a/docs/examples/advanced-example.md +++ b/docs/examples/advanced-example.md @@ -6,7 +6,7 @@ weight: 2 ```php @endif -``` \ No newline at end of file +``` diff --git a/docs/examples/basic-example.md b/docs/examples/basic-example.md index 60c2e07ca..d100933bd 100644 --- a/docs/examples/basic-example.md +++ b/docs/examples/basic-example.md @@ -6,7 +6,7 @@ weight: 1 ```php @@ -24,7 +24,7 @@ By default, all components will use the theme in the config file. But if for som ## Using sub-folders -If your component does not live in `App\Http\Livewire`, you can specify a different sub-folder. For example if your component lives in `App\Http\Livewire\Backend\Users` you would use the following: +If your component does not live in `App\Livewire`, you can specify a different sub-folder. For example if your component lives in `App\Livewire\Backend\Users` you would use the following: ```html diff --git a/docs/usage/creating-components.md b/docs/usage/creating-components.md index d58ed79e3..b5173e2ca 100644 --- a/docs/usage/creating-components.md +++ b/docs/usage/creating-components.md @@ -10,7 +10,7 @@ This is what a bare bones component looks like before your customization: ```php