From 1dc95c41eb51cc50339974551d64224c7eb8247b Mon Sep 17 00:00:00 2001 From: Dario Braun Date: Thu, 27 Sep 2018 11:11:15 +0200 Subject: [PATCH] docs: fix typo in TOH http section (#26127) PR Close #26127 --- aio/content/tutorial/toh-pt6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index 7a70578b67..52501fe242 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -347,7 +347,7 @@ Add the following `addHero()` method to the `HeroService` class. `HeroService.addHero()` differs from `updateHero` in two ways. * it calls `HttpClient.post()` instead of `put()`. -* it expects the server to generates an id for the new hero, +* it expects the server to generate an id for the new hero, which it returns in the `Observable` to the caller. Refresh the browser and add some heroes.