From c62eed17de090187edb6a8ecd2d833d95a1453d2 Mon Sep 17 00:00:00 2001 From: maliming Date: Sun, 4 Apr 2021 21:44:30 +0800 Subject: [PATCH] Update Part-8.md Fix https://github.com/abpframework/abp/issues/8376 --- docs/en/Tutorials/Part-8.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Tutorials/Part-8.md b/docs/en/Tutorials/Part-8.md index 6ab14c714c..3a77583487 100644 --- a/docs/en/Tutorials/Part-8.md +++ b/docs/en/Tutorials/Part-8.md @@ -267,7 +267,7 @@ public async Task CreateAsync(CreateAuthorDto input) ```` * `CreateAsync` requires the `BookStorePermissions.Authors.Create` permission (in addition to the `BookStorePermissions.Authors.Default` declared for the `AuthorAppService` class). -* Used the `AuthorManeger` (domain service) to create a new author. +* Used the `AuthorManager` (domain service) to create a new author. * Used the `IAuthorRepository.InsertAsync` to insert the new author to the database. * Used the `ObjectMapper` to return an `AuthorDto` representing the newly created author. @@ -566,4 +566,4 @@ Created some tests for the application service methods, which should be clear to ## The Next Part -See the [next part](Part-9.md) of this tutorial. \ No newline at end of file +See the [next part](Part-9.md) of this tutorial.