From d41988437e20ab0ef9bf4579711998e06f696d4a Mon Sep 17 00:00:00 2001 From: Lars Gyrup Brink Nielsen Date: Mon, 13 Jan 2020 22:44:18 +0100 Subject: [PATCH] docs(common): update ngForTrackBy error URL (#34761) Old URL is redirected to `https://angular.io/api/common/NgForOf#!#change-propagation` which is not exactly `https://angular.io/api/common/NgForOf#change-propagation` PR Close #34761 --- packages/common/src/directives/ng_for_of.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/directives/ng_for_of.ts b/packages/common/src/directives/ng_for_of.ts index f490432c4c..32d5955c99 100644 --- a/packages/common/src/directives/ng_for_of.ts +++ b/packages/common/src/directives/ng_for_of.ts @@ -155,7 +155,7 @@ export class NgForOf = NgIterable> implements DoCh if (console && console.warn) { console.warn( `trackBy must be a function, but received ${JSON.stringify(fn)}. ` + - `See https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html#!#change-propagation for more information.`); + `See https://angular.io/api/common/NgForOf#change-propagation for more information.`); } } this._trackByFn = fn;