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 6721893 commit 975493a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/model/HTMLImageElementObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class HTMLImageElementObject extends OpticalObject {

// View-to-model scale for the associated HTMLImageElement.
// This should be uniform for all values of htmlImageElementProperty.
public readonly scaleFactor: number
public readonly scaleFactor: number;

// model bounds of this object's visual representation
public readonly boundsProperty: IReadOnlyProperty<Bounds2>;
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/SecondPoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class SecondPoint extends PhetioObject {
public readonly positionProperty: IReadOnlyProperty<Vector2>;

// vertical offset of second point with respect to the first point on the framed object position, in cm
private readonly verticalOffsetProperty: Property<number>
private readonly verticalOffsetProperty: Property<number>;

// position of the framed object that second point is associated with
private readonly framedObjectPositionProperty: IReadOnlyProperty<Vector2>;
Expand Down

0 comments on commit 975493a

Please sign in to comment.