Skip to content

Commit

Permalink
Renamed "check box" to "checkbox" in comments and documentation, see p…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jan 12, 2018
1 parent cd52ee1 commit 3ee0858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/demo/ComponentsScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ define( function( require ) {
bottom: conductivityTesterNode.bottom + 100
} );

// short-circuit check box
// short-circuit checkbox
var shortCircuitProperty = new Property( false );
shortCircuitProperty.link( function( shortCircuit ) {
conductivityTesterNode.shortCircuit = shortCircuit;
Expand Down Expand Up @@ -521,7 +521,7 @@ define( function( require ) {
rightBeamNode.visible = on;
} );

// enabled check box
// enabled checkbox
var enabledCheckbox = new Checkbox( new Text( 'enabled', { font: new PhetFont( 20 ) } ), enabledProperty, {
centerX: layoutBounds.centerX,
top: leftLaserNode.bottom + 40
Expand Down
2 changes: 1 addition & 1 deletion js/demo/SlidersScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ define( function( require ) {
}
}, numberControlOptions ) );

// Check box that will disable all NumberControls
// Checkbox that will disable all NumberControls
var enabledCheckbox = new Checkbox( new Text( 'enabled', { font: new PhetFont( 20 ) } ), enabledProperty );

return new VBox( {
Expand Down

0 comments on commit 3ee0858

Please sign in to comment.