From 395fb186a4daf86f550c88039b6794bb2c10a721 Mon Sep 17 00:00:00 2001 From: Sarun Intaralawan Date: Thu, 8 Nov 2018 04:34:13 +0700 Subject: [PATCH] docs(router): reword relativeLinkResolution docs to not mention version numbers (#26991) PR Close #26991 --- packages/router/src/router_module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/router/src/router_module.ts b/packages/router/src/router_module.ts index 1322c00118..9d0590e42a 100644 --- a/packages/router/src/router_module.ts +++ b/packages/router/src/router_module.ts @@ -444,8 +444,8 @@ export interface ExtraOptions { * * `Link to 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'; }