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 committed Dec 30, 2019
1 parent 6c4a6a9 commit 22b7951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/AtomIdentifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
define( require => {
'use strict';
const shred = require( 'SHRED/shred' );
const Util = require( 'DOT/Util' );
const Utils = require( 'DOT/Utils' );

// An arbitrary value used to signify a 'trace' abundance, meaning that a very small amount of this isotope is
// present on Earth.
Expand Down Expand Up @@ -950,7 +950,7 @@ define( require => {
ISOTOPE_INFO_TABLE[ isotope.protonCountProperty.get() ][ isotope.massNumberProperty.get() ] !== undefined ) {

// the configuration is in the table, get it and round it to the needed number of decimal places
abundanceProportion = Util.toFixedNumber(
abundanceProportion = Utils.toFixedNumber(
ISOTOPE_INFO_TABLE[ isotope.protonCountProperty.get() ][ isotope.massNumberProperty.get() ].abundance,
numDecimalPlaces
);
Expand Down

0 comments on commit 22b7951

Please sign in to comment.