From 4f86e7ae90d7843b13bf09b69299dfda047ea61a Mon Sep 17 00:00:00 2001 From: Virginia Dooley Date: Thu, 2 Mar 2023 19:41:04 +0000 Subject: [PATCH] docs: delete or revise outdated links. (#48909) PR Close #48909 --- aio/content/guide/http-send-data-to-server.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/guide/http-send-data-to-server.md b/aio/content/guide/http-send-data-to-server.md index d4cae902ed9..0fafd6d6dd9 100644 --- a/aio/content/guide/http-send-data-to-server.md +++ b/aio/content/guide/http-send-data-to-server.md @@ -18,9 +18,9 @@ The method takes a resource URL and two additional parameters: | Parameter | Details | |:--- |:--- | | 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. | -The example catches errors as [described above](#error-details). +The example catches errors as described in [HTTP client - Handle request errors](guide/http-client-request-errors.md). The `HeroesComponent` initiates the actual POST operation by subscribing to the `Observable` returned by this service method. @@ -59,7 +59,7 @@ The following `HeroesService` example, like the POST example, replaces a resourc -As for any of the HTTP methods that return an observable, the caller, `HeroesComponent.update()` [must `subscribe()`](#always-subscribe "Why you must always subscribe.") to the observable returned from the `HttpClient.put()` in order to initiate the request. +As for any of the HTTP methods that return an observable, the caller, `HeroesComponent.update()` must `subscribe()` to the observable returned from the `HttpClient.put()` in order to initiate the request. ## Add and updating headers @@ -84,4 +84,4 @@ The following example shows how, when an old token expires, you can update the a -@reviewed 2022-11-07 +@reviewed 2023-03-02