From 4f9bf774ee4545f04661f97588a005a25307f59a Mon Sep 17 00:00:00 2001 From: Trotyl Yu Date: Sun, 14 Aug 2016 15:46:58 +0800 Subject: [PATCH] docs(router): Fix typo of missing symbol closes #2111 --- public/docs/ts/latest/guide/router.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/router.jade b/public/docs/ts/latest/guide/router.jade index 37fefe40f7..776ad5b157 100644 --- a/public/docs/ts/latest/guide/router.jade +++ b/public/docs/ts/latest/guide/router.jade @@ -1450,7 +1450,7 @@ h3#resolve-guard Resolve: pre-fetching component data If we were using a real world api, there may be some delay in when the data we want to display gets returned. We don't want to display a blank component until the data loads in this situation. - We'd like to pre-fetch data from the server so its ready the moment our route is activated. + We'd like to pre-fetch data from the server so it's ready the moment our route is activated. We'd also like to handle the situation where our data fails to load or some other error condition occurs. This would help us in our `Crisis Center` if we navigated to an `id` that doesn't return a record. We could send the user back to the `Crisis List` where we only show valid crisis centers.