Skip to content

Commit

Permalink
delete N2 and He from particle IOType documentation, #231
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed May 14, 2024
1 parent 5c43913 commit 49d92a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/model/HeavyParticle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default class HeavyParticle extends Particle {
public static readonly HeavyParticleIO = new IOType<HeavyParticle, HeavyParticleStateObject>( 'HeavyParticleIO', {
valueType: HeavyParticle,
stateSchema: HeavyParticle.STATE_SCHEMA,
documentation: 'PhET-iO Type for heavy particles, modeled after N<sub>2</sub>.<br>' +
documentation: 'PhET-iO Type for heavy particles.<br>' +
'<br>' +
HeavyParticle.STATE_SCHEMA_FIELDS_DOCUMENTATION,
// toStateObject: Use the default, which is derived from stateSchema.
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/LightParticle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default class LightParticle extends Particle {
public static readonly LightParticleIO = new IOType<LightParticle, LightParticleStateObject>( 'LightParticleIO', {
valueType: LightParticle,
stateSchema: LightParticle.STATE_SCHEMA,
documentation: 'PhET-iO Type for light particles, modeled after He.<br>' +
documentation: 'PhET-iO Type for light particles.<br>' +
'<br>' +
LightParticle.STATE_SCHEMA_FIELDS_DOCUMENTATION,
// toStateObject: Use the default, which is derived from stateSchema.
Expand Down

0 comments on commit 49d92a4

Please sign in to comment.