From bd34aa79318ca9bb454bbd2b900ec43c51f2633f Mon Sep 17 00:00:00 2001 From: Hsu Still <341464@gmail.com> Date: Wed, 27 Sep 2017 04:38:29 +0800 Subject: [PATCH] Change "you should..." to "instead, ..." --- docs/guides/commands/commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/commands/commands.md b/docs/guides/commands/commands.md index 20bba6631..0c418716b 100644 --- a/docs/guides/commands/commands.md +++ b/docs/guides/commands/commands.md @@ -46,8 +46,8 @@ ASP.NET Core's Controller pattern. This means that the lifetime of a module instance is only as long as the Command is being invoked. **Avoid using long-running code** in your modules wherever possible. -You should **not** be implementing very much logic into your modules; -you should outsource to a service for that. +You should **not** be implementing very much logic into your modules, +instead, outsource to a service for that. If you are unfamiliar with Inversion of Control, it is recommended to read the MSDN article on [IoC] and [Dependency Injection].