Skip to content

Commit

Permalink
add whitespace between // and the first letter of the line (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
veillette committed Jul 29, 2021
1 parent 769dc9b commit e8ebcad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/common/model/LightRay.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ class LightRay {
*/
setFinalPointProjectorScreen( realRays, projectorScreenBisectorLine ) {

//ensure that real rays has at least one ray
// ensure that real rays has at least one ray
if ( realRays.length > 0 ) {

// the projector screen can only intersect with the last ray
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/Optic.js
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ class Optic {

Optic.Type = Enumeration.byKeys( [
'LENS', // lens
'MIRROR' //mirror
'MIRROR' // mirror
] );

Optic.Curve = Enumeration.byKeys( [
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/TrackingDiskNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TrackingDiskNode extends Circle {

super( options.radius, options );

//update position of disk
// update position of disk
positionProperty.link( position => {
this.center = modelViewTransform.modelToViewPosition( position );
} );
Expand Down

0 comments on commit e8ebcad

Please sign in to comment.