From 5149e6238270b8e3fe19290cb815a3c3dd3aeee7 Mon Sep 17 00:00:00 2001 From: James Laverack Date: Mon, 28 Mar 2016 02:48:55 +0100 Subject: [PATCH] docs(quickstart): Fix order of methods Change the ordering of the methods `getHeroes` and `getHeroesSlowly` in the "Take it slow" appendix. The original ordering incorrectly suggested that the reader should swap the new `getHeroesSlowly` method for the existing `getHeroes` method, rather than the other way around. --- 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 8a66eb04c8..300981368f 100644 --- a/public/docs/ts/latest/tutorial/toh-pt4.jade +++ b/public/docs/ts/latest/tutorial/toh-pt4.jade @@ -384,7 +384,7 @@ code-example(format="." language="html"). Like `getHeroes`, it also returns a promise. But this promise waits 2 seconds before resolving the promise with mock heroes. - Back in the `AppComponent`, swap `_heroService.getHeroesSlowly` for `_heroService.getHeroes` + Back in the `AppComponent`, swap `_heroService.getHeroes` for `_heroService.getHeroesSlowly` and see how the app behaves. .l-main-section