From 747807e25073305a8cbe7bf731d94cb310402064 Mon Sep 17 00:00:00 2001 From: Jonathan Persson Date: Fri, 3 Feb 2017 18:25:13 +0100 Subject: [PATCH] docs(upgrade): add missing word (#3125) --- public/docs/ts/latest/guide/upgrade.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/ts/latest/guide/upgrade.jade b/public/docs/ts/latest/guide/upgrade.jade index 32148f6dc2..a3f67f5b60 100644 --- a/public/docs/ts/latest/guide/upgrade.jade +++ b/public/docs/ts/latest/guide/upgrade.jade @@ -1436,7 +1436,7 @@ code-example(format=""). #### Generate links for each phone We no longer have to hardcode the links to phone details in the phone list. - We can generate them data binding each phone's `id` to the `routerLink` directive + We can generate them by data binding each phone's `id` to the `routerLink` directive and let that directive construct the appropriate URL to the `PhoneDetailComponent`: +makeExample('upgrade-phonecat-3-final/ts/app/phone-list/phone-list.template.html', 'list', 'app/phone-list/phone-list.template.html (list with links)')(format='.')