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
This commit is contained in:
Lars Gyrup Brink Nielsen 2020-01-13 22:44:18 +01:00 committed by Miško Hevery
parent a7ed74f573
commit d41988437e
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ export class NgForOf<T, U extends NgIterable<T> = NgIterable<T>> implements DoCh
if (<any>console && <any>console.warn) { if (<any>console && <any>console.warn) {
console.warn( console.warn(
`trackBy must be a function, but received ${JSON.stringify(fn)}. ` + `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; this._trackByFn = fn;