From 15a430e2f1e8ed0bbaa2257cfbd3d50a49229738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Tue, 17 Oct 2023 19:41:20 +0300 Subject: [PATCH] Fix inherit/implement sentence --- docs/en/Tutorials/Part-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Tutorials/Part-1.md b/docs/en/Tutorials/Part-1.md index f6c3f96649..0ed26ce557 100644 --- a/docs/en/Tutorials/Part-1.md +++ b/docs/en/Tutorials/Part-1.md @@ -238,7 +238,7 @@ This will add a new migration class to the project: > It's good to have some initial data in the database before running the application. This section introduces the [Data Seeding](../Data-Seeding.md) system of the ABP framework. You can skip this section if you don't want to create the data seeding, but it is suggested to follow along and learn this useful ABP Framework feature. -Create a class deriving from the `IDataSeedContributor` in the `*.Domain` project by copying the following code: +Create a class that implements the `IDataSeedContributor` interface in the `*.Domain` project by copying the following code: ```csharp using System;