Skip to content

Commit

Permalink
Use semicolons to terminate fields in type StringType, see phetsims/c…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed May 7, 2022
1 parent b85e6a1 commit 876eed2
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions js/buildAnAtomStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,38 @@ import getStringModule from '../../chipper/js/getStringModule.js';
import buildAnAtom from './buildAnAtom.js';

type StringsType = {
'ion': string,
'stableSlashUnstable': string,
'symbol': string,
'findTheElement': string,
'massNumber': string,
'atom': string,
'netCharge': string,
'element': string,
'orbits': string,
'model': string,
'whatIsTheMassNumber': string,
'ion': string;
'stableSlashUnstable': string;
'symbol': string;
'findTheElement': string;
'massNumber': string;
'atom': string;
'netCharge': string;
'element': string;
'orbits': string;
'model': string;
'whatIsTheMassNumber': string;
'build-an-atom': {
'title': string
},
'whatIsTheTotalCharge': string,
'electronsColon': string,
'electronsColonPattern': string,
'game': string,
'neutralAtom': string,
'neutralSlashIon': string,
'neutrons': string,
'protonsColon': string,
'protonsColonPattern': string,
'cloud': string,
'neutronsColon': string,
'neutronsColonPattern': string,
'electrons': string,
'isIt': string,
'protons': string,
'show': string,
'chooseYourGame': string,
'highContrastParticles': string
'title': string;
};
'whatIsTheTotalCharge': string;
'electronsColon': string;
'electronsColonPattern': string;
'game': string;
'neutralAtom': string;
'neutralSlashIon': string;
'neutrons': string;
'protonsColon': string;
'protonsColonPattern': string;
'cloud': string;
'neutronsColon': string;
'neutronsColonPattern': string;
'electrons': string;
'isIt': string;
'protons': string;
'show': string;
'chooseYourGame': string;
'highContrastParticles': string;
};

const buildAnAtomStrings = getStringModule( 'BUILD_AN_ATOM' ) as StringsType;
Expand Down

0 comments on commit 876eed2

Please sign in to comment.