From c467d56a2b435afa7105ddcac0606d3e7bdfbbd8 Mon Sep 17 00:00:00 2001 From: Mark McEahern Date: Tue, 21 Jun 2016 10:55:52 -0500 Subject: [PATCH] Fix typo in first-app-tests.jade --- public/docs/ts/latest/testing/first-app-tests.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/testing/first-app-tests.jade b/public/docs/ts/latest/testing/first-app-tests.jade index 3df9bf04bb..9824bf2b17 100644 --- a/public/docs/ts/latest/testing/first-app-tests.jade +++ b/public/docs/ts/latest/testing/first-app-tests.jade @@ -185,7 +185,7 @@ figure.image-display Once configured with a default extension of 'js',  SystemJS requests `hero.js` which *does* exist and is promptly returned by our server. ### Asynchronous System.import - The call to `System.import` shouldn't surprise us but it's asynchronous nature might. + The call to `System.import` shouldn't surprise us but its asynchronous nature might. If we ponder this for a moment, we realize that it must be asynchronous because System.js may have to fetch the corresponding JavaScript file from the server. Accordingly, `System.import` returns a promise and we must wait for that promise to resolve.