Skip to content

Commit e9bb8cf

Browse files
committed
Rename method
1 parent f2182c0 commit e9bb8cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/components/spinner/spinner.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class SpinnerComponent implements OnDestroy, OnInit {
5252
}
5353

5454
ngOnInit(): void {
55-
this.nullifySpinnerIfComponentOutletIsDefined();
55+
this.nullifySpinnerIfEntryComponentIsDefined();
5656

5757
if (!(this.filteredUrlPatterns instanceof Array)) {
5858
throw new TypeError('`filteredUrlPatterns` must be an array.');
@@ -74,7 +74,7 @@ export class SpinnerComponent implements OnDestroy, OnInit {
7474
this.subscriptions.unsubscribe();
7575
}
7676

77-
private nullifySpinnerIfComponentOutletIsDefined(): void {
77+
private nullifySpinnerIfEntryComponentIsDefined(): void {
7878
if (null != this.entryComponent) {
7979
this.spinner = null;
8080
}

0 commit comments

Comments
 (0)