From 679bbb8a126d6d22ce442c7c79e8c8b6b04f36e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Thu, 15 Dec 2022 22:05:35 +0300 Subject: [PATCH] Typo fix --- docs/en/Entities.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Entities.md b/docs/en/Entities.md index e13b297f4f..182e74cdd3 100644 --- a/docs/en/Entities.md +++ b/docs/en/Entities.md @@ -326,7 +326,7 @@ It's designed as read-only and automatically invalidates a cached entity if the ## Versioning Entities -ABP defines the `IHasEntityVersion` interface for automatic versioning of your entities. It only provides a single `EntityVersion` properties, as shown in the following code block: +ABP defines the `IHasEntityVersion` interface for automatic versioning of your entities. It only provides a single `EntityVersion` property, as shown in the following code block: ````csharp public interface IHasEntityVersion @@ -335,7 +335,7 @@ public interface IHasEntityVersion } ```` -If you implement the `IHasEntityVersion` interface, ABP automatically increases the `EntityVersion` value whenever you update your entity. The initial value will be `0`, when you first create the entity and save to the database. +If you implement the `IHasEntityVersion` interface, ABP automatically increases the `EntityVersion` value whenever you update your entity. The initial `EntityVersion` value will be `0`, when you first create an entity and save to the database. ## Extra Properties