Skip to content

Commit 8d86978

Browse files
authored
Merge pull request #8 from devnll/fix-readme-typos
fix readme typos
2 parents ccecf97 + 0f2604a commit 8d86978

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ This will register your views with Laravel.
103103
If you have a view `<package root>/resources/views/myView.blade.php`, you can use it like this: `view('your-package-name::myView')`. Of course, you can also use subdirectories to organise your views. A view located at `<package root>/resources/views/subdirectory/myOtherView.blade.php` can be used with `view('your-package-name::subdirectory.myOtherView')`.
104104

105105

106-
Calling `hasViews` will also make views publishable. Users of your package will be able to publish the config file with this command:
106+
Calling `hasViews` will also make views publishable. Users of your package will be able to publish the views with this command:
107107

108108
```bash
109109
php artisan vendor:publish --tag=your-package-name-views
@@ -142,7 +142,7 @@ trans('your-package-name::translations.translatable'); // returns 'translation'
142142
If your package name starts with `laravel-` then you should leave that off in the example above.
143143

144144

145-
Calling `hasTranslations` will also make translations publishable. Users of your package will be able to publish the config file with this command:
145+
Calling `hasTranslations` will also make translations publishable. Users of your package will be able to publish the translations with this command:
146146

147147
```bash
148148
php artisan vendor:publish --tag=your-package-name-translations
@@ -160,7 +160,7 @@ $package
160160
->hasAssets();
161161
```
162162

163-
Users of your package will be able to publish the config file with this command:
163+
Users of your package will be able to publish the assets with this command:
164164

165165
```bash
166166
php artisan vendor:publish --tag=your-package-name-assets
@@ -190,7 +190,7 @@ $package
190190
->hasMigrations(['my_package_tables', 'some_other_migration']);
191191
```
192192

193-
Calling `hasMigration` will also make migrations publishable. Users of your package will be able to publish the config file with this command:
193+
Calling `hasMigration` will also make migrations publishable. Users of your package will be able to publish the migrations with this command:
194194

195195
```bash
196196
php artisan vendor:publish --tag=your-package-name-migrations

0 commit comments

Comments
 (0)