From 918ae9996fcdee4eb0e24591ed52c5dba7ff6fd9 Mon Sep 17 00:00:00 2001 From: Andy Costanza Date: Mon, 3 Apr 2017 23:46:32 +0200 Subject: [PATCH] docs(toh-pt6) : update htttp.get() to http.get() (#3498) --- public/docs/ts/latest/tutorial/toh-pt6.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt6.jade b/public/docs/ts/latest/tutorial/toh-pt6.jade index 41cbde93a2..cba5a5f39c 100644 --- a/public/docs/ts/latest/tutorial/toh-pt6.jade +++ b/public/docs/ts/latest/tutorial/toh-pt6.jade @@ -382,7 +382,7 @@ h1 Providing HTTP Services in the `HeroService`, although the URL now has a query string. More importantly, you no longer call `toPromise()`. - Instead you return the *Observable* from the the `htttp.get()`, + Instead you return the *Observable* from the the `http.get()`, after chaining it to another RxJS operator, map(), to extract heroes from the response data. RxJS operator chaining makes response processing easy and readable.