From 33745ec220f1c3726a27e8b19c70a2d84ec49472 Mon Sep 17 00:00:00 2001 From: Dmitri Suvorov Date: Mon, 9 May 2016 19:05:50 +0300 Subject: [PATCH] docs(tutorial): fix typo (slowy -> slowly) closes #1332 --- public/docs/ts/latest/tutorial/toh-pt4.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/tutorial/toh-pt4.jade b/public/docs/ts/latest/tutorial/toh-pt4.jade index b518856b05..81cf40f263 100644 --- a/public/docs/ts/latest/tutorial/toh-pt4.jade +++ b/public/docs/ts/latest/tutorial/toh-pt4.jade @@ -377,7 +377,7 @@ code-example(format="." language="html"). We can simulate a slow connection. Import the `Hero` symbol and add the following `getHeroesSlowly` method to the `HeroService` -+makeExample('toh-4/ts/app/hero.service.ts', 'get-heroes-slowly', 'hero.service.ts (getHeroesSlowy)')(format=".") ++makeExample('toh-4/ts/app/hero.service.ts', 'get-heroes-slowly', 'hero.service.ts (getHeroesSlowly)')(format=".") :marked Like `getHeroes`, it also returns a promise. But this promise waits 2 seconds before resolving the promise with mock heroes.