From f370f0426764d0088fbdfb9e87f245117d06c418 Mon Sep 17 00:00:00 2001 From: Sergey Samsonov Date: Wed, 12 Apr 2017 06:24:46 +0300 Subject: [PATCH] docs(toh-6): fix typos about Promise and Observable with Dart artifacts (#3436) --- public/docs/ts/latest/tutorial/toh-pt6.jade | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt6.jade b/public/docs/ts/latest/tutorial/toh-pt6.jade index cba5a5f39c..3fa495d0d8 100644 --- a/public/docs/ts/latest/tutorial/toh-pt6.jade +++ b/public/docs/ts/latest/tutorial/toh-pt6.jade @@ -366,8 +366,9 @@ h1 Providing HTTP Services But requests aren't always done only once. You may start one request, cancel it, and make a different request before the server has responded to the first request. - A *request-cancel-new-request* sequence is difficult to implement with *Promises*, but - easy with *Observables*. + + A *request-cancel-new-request* sequence is difficult to implement with `Promise`s, but + easy with `Observable`s. ### Add the ability to search by name You're going to add a *hero search* feature to the Tour of Heroes.