Skip to content

Commit

Permalink
Add missing semicolons, see phetsims/chipper#1275
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 11, 2022
1 parent 1cbcfe8 commit 000cf4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/view/CueArrowsState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CueArrowsState {
antecedentCueDisplayedProperty: BooleanProperty;
consequentCueDisplayedProperty: BooleanProperty;
interactedWithProperty: BooleanProperty;
}
};

public constructor() {

Expand Down
2 changes: 1 addition & 1 deletion js/create/view/TickMarkRangeComboBoxNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class TickMarkRangeComboBoxNode extends Node {
private enabledComboBox: ComboBox<number>;
private disabledComboBox: ComboBox<true | number>;
private tickMarkRangeMap: Record<number, string>;
private tickMarkRangeProperty: Property<number>
private tickMarkRangeProperty: Property<number>;

public constructor( tickMarkRangeProperty: Property<number>, comboBoxParent: Node,
tickMarkViewProperty: EnumerationProperty<TickMarkView> ) {
Expand Down

0 comments on commit 000cf4b

Please sign in to comment.