From 99c5ba211ffe44ed37b82add1cecce32038be730 Mon Sep 17 00:00:00 2001 From: zepumph Date: Thu, 4 Oct 2018 11:56:53 -0800 Subject: [PATCH] rename instance doc to `phetioDocumentation`, https://github.com/phetsims/tandem/issues/63 --- js/model/Particle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/model/Particle.js b/js/model/Particle.js index 6a65d9c..3b81aa5 100644 --- a/js/model/Particle.js +++ b/js/model/Particle.js @@ -60,7 +60,7 @@ define( function( require ) { } ); this.radiusProperty = new NumberProperty( type === 'electron' ? ShredConstants.ELECTRON_RADIUS : ShredConstants.NUCLEON_RADIUS, { tandem: options.tandem && options.tandem.createTandem( 'radiusProperty' ), - phetioInstanceDocumentation: 'The radius of the particle. Changes to radius may not be reflected in view.' + phetioDocumentation: 'The radius of the particle. Changes to radius may not be reflected in view.' } ); this.animationVelocityProperty = new NumberProperty( DEFAULT_PARTICLE_VELOCITY, { tandem: options.tandem && options.tandem.createTandem( 'animationVelocityProperty' ),