Skip to content

Commit 8b1e70d

Browse files
committed
chore: fix lint warnings
Fixes a few lint warnings that got into master.
1 parent 591d1f2 commit 8b1e70d

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/lib/tabs/tab-body.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,7 @@ import {
2424
forwardRef,
2525
ViewChild,
2626
} from '@angular/core';
27-
import {
28-
trigger,
29-
state,
30-
style,
31-
animate,
32-
transition,
33-
AnimationEvent,
34-
} from '@angular/animations';
27+
import {AnimationEvent} from '@angular/animations';
3528
import {TemplatePortal, CdkPortalOutlet, PortalHostDirective} from '@angular/cdk/portal';
3629
import {Directionality, Direction} from '@angular/cdk/bidi';
3730
import {Subscription} from 'rxjs/Subscription';

src/lib/tabs/tab.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class MatTab extends _MatTabMixinBase implements OnInit, CanDisable, OnCh
5151
*/
5252
@ContentChild(MatTabContent, {read: TemplateRef}) _explicitContent: TemplateRef<any>;
5353

54-
/** Template inside the MatTab view that contains an <ng-content>. */
54+
/** Template inside the MatTab view that contains an `<ng-content>`. */
5555
@ViewChild(TemplateRef) _implicitContent: TemplateRef<any>;
5656

5757
/** The plain text label for the tab, used when there is no template label. */

0 commit comments

Comments
 (0)