One more extra space

This commit is contained in:
Nathan Shively-Sanders 2019-02-27 18:11:31 -08:00
parent 7beb2b65a4
commit b4e1dca9cf

View File

@ -154,7 +154,7 @@ interface SomeStamp extends stampit.Stamp {
}
const SomeStamp = stampit()
.init(function (params: { a: number; b: boolean}) {
.init(function(params: { a: number; b: boolean}) {
this.a = '' + a;
this.b = '' + b;
}) as SomeStamp;