docs(docs-infra): remove hash before link (#57351)

Remove hash in link for correct view

Fixes #57349

docs(docs-infra): change the link

Change the link with name of class and method

docs: fix the link name

PR Close #57351
This commit is contained in:
Vlad Boisa 2024-08-12 17:54:10 +01:00 committed by Andrew Kushnir
parent 97fd311b6a
commit 3bc28678fa

View file

@ -67,7 +67,7 @@ export class Compiler {
}
/**
* Same as {@link #compileModuleSync} but also creates ComponentFactories for all components.
* Same as {@link Compiler#compileModuleSync compileModuleSync} but also creates ComponentFactories for all components.
*/
compileModuleAndAllComponentsSync<T>(moduleType: Type<T>): ModuleWithComponentFactories<T> {
const ngModuleFactory = this.compileModuleSync(moduleType);
@ -84,7 +84,7 @@ export class Compiler {
}
/**
* Same as {@link #compileModuleAsync} but also creates ComponentFactories for all components.
* Same as {@link Compiler#compileModuleAsync compileModuleAsync} but also creates ComponentFactories for all components.
*/
compileModuleAndAllComponentsAsync<T>(
moduleType: Type<T>,