From 4763af09dd1a5d89e6096b68c30057b5f350317b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sun, 8 Oct 2017 19:10:43 +0300 Subject: [PATCH] Minor document improvement. --- docs/Getting-Started-Console-Application.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Getting-Started-Console-Application.md b/docs/Getting-Started-Console-Application.md index 00d0e8961e..4d38ae7106 100644 --- a/docs/Getting-Started-Console-Application.md +++ b/docs/Getting-Started-Console-Application.md @@ -16,7 +16,7 @@ Install-Package Volo.Abp ### Create First ABP Module -ABP is a modular framework and it requires a **root module** class derived from ``AbpModule``: +ABP is a modular framework and it requires a **startup (root) module** class derived from ``AbpModule``: ````C# using Microsoft.Extensions.DependencyInjection; @@ -34,7 +34,7 @@ namespace AbpConsoleDemo } ```` -``AppModule`` is a good name for the root module for a console application. A module class can register services to Dependency Injection by overriding ``ConfigureServices`` method as shown here. ``AddAssemblyOf<...>`` is a special extension method of ABP that registers all services in an assembly by convention (TODO: link to DI document). While this is optional, a module generally registers some of it's services. +``AppModule`` is a good name for the startup module for a console application. A module class can register services to Dependency Injection by overriding ``ConfigureServices`` method as shown here. ``AddAssemblyOf<...>`` is a special extension method of ABP that registers all services in an assembly by convention (TODO: link to DI document). While this is optional, a module generally registers some of it's services. ### Initialize The Application @@ -63,7 +63,7 @@ namespace AbpConsoleDemo ```` -``AbpApplicationFactory`` is used to create the application and load all modules taking ``AppModule`` as the root (starting) module. ``Initialize()`` method starts the application. +``AbpApplicationFactory`` is used to create the application and load all modules taking ``AppModule`` as the startup module. ``Initialize()`` method starts the application. ### Hellow World!