docs(router): reword relativeLinkResolution docs to not mention version numbers (#26991)

PR Close #26991
This commit is contained in:
Sarun Intaralawan 2018-11-08 04:34:13 +07:00 committed by Ben Lesh
parent f0989b786b
commit 395fb186a4
1 changed files with 2 additions and 2 deletions

View File

@ -444,8 +444,8 @@ export interface ExtraOptions {
*
* `<a [routerLink]="['../a']">Link to A</a>`
*
* In other words, you're required to use `../` rather than `./`. The current default in v6
* is `legacy`, and this option will be removed in v7 to default to the corrected behavior.
* In other words, you're required to use `../` rather than `./`. This is currently the default
* behavior. Setting this option to `corrected` enables the fix.
*/
relativeLinkResolution?: 'legacy'|'corrected';
}