From d9bf6e37ae1ac237dbf6109c40ef7840b1fb3eeb Mon Sep 17 00:00:00 2001 From: Kapunahele Wong Date: Fri, 8 Jun 2018 16:38:31 -0400 Subject: [PATCH] docs: fix wording in 4-10 (#24385) PR Close #24385 --- aio/content/guide/styleguide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/styleguide.md b/aio/content/guide/styleguide.md index 52fe100c7c..7abf5b70b4 100644 --- a/aio/content/guide/styleguide.md +++ b/aio/content/guide/styleguide.md @@ -3109,9 +3109,9 @@ module are referenced across the entire application. -**Avoid** providing services in shared modules. Services are usually +**Consider** _not_ providing services in shared modules. Services are usually singletons that are provided once for the entire application or -in a particular feature module. +in a particular feature module. There are exceptions, however. For example, in the sample code that follows, notice that the `SharedModule` provides `FilterTextService`. This is acceptable here because the service is stateless;that is, the consumers of the service aren't impacted by new instances.