Skip to content

Commit

Permalink
style(specs): Fixed trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Jun 15, 2018
1 parent de3d937 commit 340f086
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions spec/TinyType.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ describe('TinyType', () => {
constructor(public readonly area: Area,
public readonly district: District,
public readonly sector: Sector,
public readonly unit: Unit,) {
public readonly unit: Unit,
) {
super();
}
}
Expand Down Expand Up @@ -265,7 +266,8 @@ describe('TinyType', () => {

constructor(public readonly firstName: FirstName,
public readonly lastName: LastName,
public readonly age: Age,) {
public readonly age: Age,
) {
super();
}

Expand Down

0 comments on commit 340f086

Please sign in to comment.