Skip to content

Commit

Permalink
Update documentation, see phetsims/axon#336
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 2, 2020
1 parent 9c36030 commit 9c3d5e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/moleculesandlight/view/MoleculeActionSoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ABSORPTION_TO_ACTIVITY_SOUND_DELAY = 0.2; // in seconds
class MoleculeActionSoundGenerator extends SoundGenerator {

/**
* @param {ObservableArray<Molecule>}activeMolecules
* @param {ObservableArrayDef<Molecule>}activeMolecules
* @param {BooleanProperty} simIsRunningProperty
* @param {BooleanProperty} isSlowMotionProperty
* @param {Object} [options]
Expand Down
2 changes: 1 addition & 1 deletion js/moleculesandlight/view/PhotonEmissionSoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const PLAY_MOLECULE_EMISSION_X_POSITION = 0;
class PhotonEmissionSoundGenerator extends SoundGenerator {

/**
* @param {ObservableArray<Photon>} photons
* @param {ObservableArrayDef<Photon>} photons
* @param {Object} [options]
*/
constructor( photons, options ) {
Expand Down
2 changes: 1 addition & 1 deletion js/photon-absorption/model/PhotonAbsorptionModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function PhotonAbsorptionModel( initialPhotonTarget, tandem ) {
} ); // Elements are of type Molecule.

// @public (read-only) {Emitter} - emitter for when a photon is emitted from the emission point - useful in addition
// to the photons ObservableArray because this is specifically for photon emission from the light source
// to the photons ObservableArrayDef because this is specifically for photon emission from the light source
this.photonEmittedEmitter = new Emitter( { parameters: [ { valueType: Photon } ] } );

// @public - Emits when the model has been reset
Expand Down

0 comments on commit 9c3d5e4

Please sign in to comment.