diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index 985997aaea..af9689e657 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -140,7 +140,7 @@ This particular `HttpClient.get()` call returns an `Observable`; that is ### `HttpClient.get()` returns response data `HttpClient.get()` returns the body of the response as an untyped JSON object by default. -Applying the optional type specifier, `` , gives you a typed result object. +Applying the optional type specifier, `` , adds TypeScript capabilities, which reduce errors during compile time. The server's data API determines the shape of the JSON data. The _Tour of Heroes_ data API returns the hero data as an array.