Skip to content

Commit

Permalink
Rename DOT/Util and SCENERY/Util to Utils, see phetsims/tasks#966
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid authored and marlitas committed Jun 28, 2022
1 parent 50b3955 commit d0d16e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/NumberPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ define( require => {
const SunConstants = require( 'SUN/SunConstants' );
const Tandem = require( 'TANDEM/Tandem' );
const Text = require( 'SCENERY/nodes/Text' );
const Util = require( 'DOT/Util' );
const Utils = require( 'DOT/Utils' );

/**
* @param {Property.<number>} valueProperty
Expand Down Expand Up @@ -87,7 +87,7 @@ define( require => {
* @returns {string}
*/
formatValue: function( value ) {
return Util.toFixed( value, options.decimalPlaces );
return Utils.toFixed( value, options.decimalPlaces );
},

/**
Expand Down

0 comments on commit d0d16e8

Please sign in to comment.