From 1ec092ba32afb1c38e931c531926dc033849619f Mon Sep 17 00:00:00 2001 From: Max Kramer Date: Wed, 24 Apr 2019 17:15:22 -0400 Subject: [PATCH] docs: fix example header in singleton services guide to match styleguide (#30097) Removes the ".0" from code header, as that doesn't match the recommended code style for service files names. fixes #29862 PR Close #30097 --- aio/content/guide/singleton-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/singleton-services.md b/aio/content/guide/singleton-services.md index c5383d2710..a19ec8b7a4 100644 --- a/aio/content/guide/singleton-services.md +++ b/aio/content/guide/singleton-services.md @@ -25,7 +25,7 @@ There are two ways to make a service a singleton in Angular: Beginning with Angular 6.0, the preferred way to create a singleton service is to set `providedIn` to `root` on the service's `@Injectable()` decorator. This tells Angular to provide the service in the application root. - + For more detailed information on services, see the [Services](tutorial/toh-pt4) chapter of the [Tour of Heroes tutorial](tutorial).