fix(router): fix malformed jsdoc comment for RouterLinkWithHref export

The export statement was incorrectly placed inside the JSDoc comment block,
and there was a stray text fragment "nstead." from the deprecation message.
This moves the export statement outside the comment and removes the stray text.
This commit is contained in:
Shuaib Hasan Akib
2026-06-29 22:14:42 +06:00
committed by Alex Rickabaugh
parent b9125db156
commit a74801c59c
@@ -587,8 +587,6 @@ export class RouterLink implements OnChanges, OnDestroy {
* An alias for the `RouterLink` directive.
* Deprecated since v15, use `RouterLink` directive instead.
*
export { RouterLink as RouterLinkWithHref };
nstead.
* @publicApi
*/
export {RouterLink as RouterLinkWithHref};