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 ebbf729 commit 8551e71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/compare/view/ComparisonTextNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import BooleanProperty from '../../../../axon/js/BooleanProperty.js';
import StringUtils from '../../../../phetcommon/js/util/StringUtils.js';

class ComparisonTextNode extends Node {
public readonly comparisonStringProperty: IReadOnlyProperty<string>
public readonly comparisonStringProperty: IReadOnlyProperty<string>;

constructor( leftCurrentNumberProperty: NumberProperty,
rightCurrentNumberProperty: NumberProperty,
Expand Down
2 changes: 1 addition & 1 deletion js/game/model/NumberPlayGameModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class NumberPlayGameModel {
public readonly subitizeLevels: SubitizeGameLevel[];
public readonly countingLevels: CountingGameLevel[];
public readonly levels: Array<NumberPlayGameLevel>;
public readonly levelProperty: Property<NumberPlayGameLevel| null>
public readonly levelProperty: Property<NumberPlayGameLevel| null>;

constructor( tandem: Tandem ) {

Expand Down

0 comments on commit 8551e71

Please sign in to comment.