Skip to content

Commit

Permalink
var -> const using eslint auto fix, phetsims/tasks#1012
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Sep 19, 2019
1 parent 126773f commit d394446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/area-model-multiplication-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ define( require => {
// strings
const areaModelMultiplicationTitleString = require( 'string!AREA_MODEL_MULTIPLICATION/area-model-multiplication.title' );

var simOptions = {
const simOptions = {
credits: {
leadDesign: 'Amy Hanson, Amanda McGarry',
softwareDevelopment: 'Jonathan Olson',
Expand All @@ -30,7 +30,7 @@ define( require => {
};

SimLauncher.launch( function() {
var sim = new Sim( areaModelMultiplicationTitleString, [
const sim = new Sim( areaModelMultiplicationTitleString, [
new ExploreScreen(),
new GenericScreen(),
new GenericGameScreen()
Expand Down

0 comments on commit d394446

Please sign in to comment.