From 2f6062f63202a56334b5a90a819b2a80b8a07b9f Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Mon, 26 Aug 2019 12:00:11 -0700 Subject: [PATCH] docs: fix callout header (#32325) PR Close #32325 --- aio/content/guide/http.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index c303938e4a..1ce150f8b5 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -73,8 +73,8 @@ the component **subscribes** to the method's return value. The subscription callback copies the data fields into the component's `config` object, which is data-bound in the component template for display. -
-**Why write a service?** +
+
Why write a service?
This example is so simple that it is tempting to write the `Http.get()` inside the component itself and skip the service.