Skip to content

Commit

Permalink
Correct casing problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
NickHodges committed Oct 6, 2018
1 parent 8258528 commit 7609a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OOPinTypeScript/Mixins/mixins.ts
Expand Up @@ -30,7 +30,7 @@ class Decathlete implements runsFast, jumpsHigh, throwsFar {
throwsFar!: () => void;
}

applyMixins(Decathlete, [RunsFast, JumpsHigh, ThrowsFar]);
applyMixins(Decathlete, [runsFast, jumpsHigh, throwsFar]);

const aDecathlete = new Decathlete();
console.log('Decathlete:');
Expand Down

0 comments on commit 7609a72

Please sign in to comment.