From b761cac3d254b7190784138eabba255158613b6b Mon Sep 17 00:00:00 2001 From: lonwern Date: Wed, 5 Jun 2019 15:40:59 +0800 Subject: [PATCH] Typo fix. --- docs/en/Startup-Templates/Mvc.md | 2 +- docs/zh-Hans/Startup-Templates/Mvc.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Startup-Templates/Mvc.md b/docs/en/Startup-Templates/Mvc.md index 531b254be8..c131dffac7 100644 --- a/docs/en/Startup-Templates/Mvc.md +++ b/docs/en/Startup-Templates/Mvc.md @@ -140,7 +140,7 @@ This is a project that defines C# client proxies to use the HTTP APIs of the sol `.HttpApi.Client.ConsoleTestApp` project is a console application created to demonstrate the usage of the client proxies. -Most of time you don't need to manually create C# client proxies, thanks to ABP's [Cynamic C# API Clients](../AspNetCore/Dynamic-CSharp-API-Clients.md) feature. +Most of time you don't need to manually create C# client proxies, thanks to ABP's [Dynamic C# API Clients](../AspNetCore/Dynamic-CSharp-API-Clients.md) feature. * Depends on the `.Application.Contracts` project to be able to share the same application service interfaces and DTOs with the remote service. diff --git a/docs/zh-Hans/Startup-Templates/Mvc.md b/docs/zh-Hans/Startup-Templates/Mvc.md index 4dd28edeab..25930cf733 100644 --- a/docs/zh-Hans/Startup-Templates/Mvc.md +++ b/docs/zh-Hans/Startup-Templates/Mvc.md @@ -50,7 +50,7 @@ abp new Acme.BookStore --tiered ![bookstore-visual-studio-solution-v3](../images/bookstore-visual-studio-solution-v3.png) -项目组织在`src`和`test`文件夹中. `src`文件夹包含实际应用程序,该应用程序基于前面提到的[DDD]原则(../Domain-Driven-Design.md)进行分层. +项目组织在`src`和`test`文件夹中. `src`文件夹包含实际应用程序,该应用程序基于前面提到的[DDD](../Domain-Driven-Design.md)原则进行分层. --------------------