diff --git a/seeding.md b/seeding.md
index 309cafcbf8..c18d910013 100644
--- a/seeding.md
+++ b/seeding.md
@@ -9,12 +9,12 @@
## Introduction
-Laravel includes a simple method of seeding your database with test data using seed classes. All seed classes are stored in the `database/seeds` directory. Seed classes may have any name you wish, but probably should follow some sensible convention, such as `UserSeeder`, etc. By default, a `DatabaseSeeder` class is defined for you. From this class, you may use the `call` method to run other seed classes, allowing you to control the seeding order.
+Laravel includes a simple method of seeding your database with test data using seed classes. All seed classes are stored in the `database/seeders` directory. Seed classes may have any name you wish, but probably should follow some sensible convention, such as `UserSeeder`, etc. By default, a `DatabaseSeeder` class is defined for you. From this class, you may use the `call` method to run other seed classes, allowing you to control the seeding order.
## Writing Seeders
-To generate a seeder, execute the `make:seeder` [Artisan command](/docs/{{version}}/artisan). All seeders generated by the framework will be placed in the `database/seeds` directory:
+To generate a seeder, execute the `make:seeder` [Artisan command](/docs/{{version}}/artisan). All seeders generated by the framework will be placed in the `database/seeders` directory:
php artisan make:seeder UserSeeder
@@ -36,7 +36,7 @@ As an example, let's modify the default `DatabaseSeeder` class and add a databas
class DatabaseSeeder extends Seeder
{
/**
- * Run the database seeds.
+ * Run the database seeders.
*
* @return void
*/
@@ -62,7 +62,7 @@ For example, let's create 50 users and attach a relationship to each user:
use App\Models\User;
/**
- * Run the database seeds.
+ * Run the database seeders.
*
* @return void
*/
@@ -80,7 +80,7 @@ For example, let's create 50 users and attach a relationship to each user:
Within the `DatabaseSeeder` class, you may use the `call` method to execute additional seed classes. Using the `call` method allows you to break up your database seeding into multiple files so that no single seeder class becomes overwhelmingly large. Pass the name of the seeder class you wish to run:
/**
- * Run the database seeds.
+ * Run the database seeders.
*
* @return void
*/