From 931a636bcc7ac32bac00f8ce326358b98e793db1 Mon Sep 17 00:00:00 2001 From: volshibenik Date: Mon, 3 Dec 2018 09:35:05 +0300 Subject: [PATCH] docs: fix typo in toh-pt6.md (#27403) PR Close #27403 --- 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 1c290bcb05ec8..7a70578b67237 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -251,7 +251,7 @@ Here is the final version of `getHeroes` with the `tap` that logs the operation. Most web APIs support a _get by id_ request in the form `:baseURL/:id`. -Here, the _base URL_ is the `heroesURL` defined in the [Heroes and HTTP](http://localhost:4800/tutorial/toh-pt6#heroes-and-http) section (`api/heroes`) and _id_ is +Here, the _base URL_ is the `heroesURL` defined in the [Heroes and HTTP](tutorial/toh-pt6#heroes-and-http) section (`api/heroes`) and _id_ is the number of the hero that you want to retrieve. For example, `api/heroes/11`. Add a `HeroService.getHero()` method to make that request: