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 14d50fb commit 117a629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/FaucetNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export default class FaucetNode extends AccessibleSlider( Node, 0 ) {
documentation: 'Faucet that emits fluid, typically user-controllable',
supertype: Node.NodeIO,
events: [ 'startTapToDispense', 'endTapToDispense' ]
} )
} );
}

type ShooterNodeOptions = {
Expand Down
2 changes: 1 addition & 1 deletion js/SpectrumNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class SpectrumNode extends Node {
public static DEFAULT_VALUE_TO_COLOR = ( value: number ) => {
assert && assert( value >= 0 && value <= 1, `value is out of range [0,1]: ${value}` );
return new Color( 255 * value, 255 * value, 255 * value );
}
};

public constructor( providedOptions?: SpectrumNodeOptions ) {

Expand Down

0 comments on commit 117a629

Please sign in to comment.