From 0807d13201f068ea7133eacf3c7dedd9797a6afb Mon Sep 17 00:00:00 2001 From: Amadou Sall Date: Tue, 16 Feb 2021 18:57:17 +0100 Subject: [PATCH] docs: remove the extra backtick character (#40873) PR Close #40873 --- aio/content/guide/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/http.md b/aio/content/guide/http.md index bced5a64b6..48c57fc69a 100644 --- a/aio/content/guide/http.md +++ b/aio/content/guide/http.md @@ -389,7 +389,7 @@ In the following example, the `HeroesService` makes an HTTP POST request when ad The `HttpClient.post()` method is similar to `get()` in that it has a type parameter, which you can use to specify that you expect the server to return data of a given type. The method takes a resource URL and two additional parameters: * *body* - The data to POST in the body of the request. -* *options*` - An object containing method options which, in this case, [specify required headers](#adding-headers). +* *options* - An object containing method options which, in this case, [specify required headers](#adding-headers). The example catches errors as [described above](#error-details).