diff --git a/modules/component/spec/core/cd-aware/render_creator.ts b/modules/component/spec/core/cd-aware/render_creator.spec.ts similarity index 100% rename from modules/component/spec/core/cd-aware/render_creator.ts rename to modules/component/spec/core/cd-aware/render_creator.spec.ts diff --git a/modules/component/src/core/utils/get-global-this.ts b/modules/component/src/core/utils/get-global-this.ts index 0acedcfea1..e34c2a8738 100644 --- a/modules/component/src/core/utils/get-global-this.ts +++ b/modules/component/src/core/utils/get-global-this.ts @@ -8,7 +8,7 @@ * - Tests * - Browser * - * @return {globalThis} - A reference to globalThis. `window` in the Browser. + * @return A reference to globalThis. `window` in the Browser. */ export function getGlobalThis(): any { return ((globalThis as any) || (self as any) || (window as any)) as any; diff --git a/modules/component/src/core/utils/zone-checks.ts b/modules/component/src/core/utils/zone-checks.ts index 94da38be6e..743b2f0c25 100644 --- a/modules/component/src/core/utils/zone-checks.ts +++ b/modules/component/src/core/utils/zone-checks.ts @@ -13,8 +13,8 @@ * Consider the situation of a Angular element configured for ZoneLess * environments is used in an Angular application relining on the zone mechanism. * - * @param instance {Class Instance} - The instance to check for constructor name of `NgZone`. - * @return {boolean} - true if instance is of type `NgZone`. + * @param instance - The instance to check for constructor name of `NgZone`. + * @return true if instance is of type `NgZone`. * */ export function isNgZone(instance: any): boolean {