Skip to content

Commit

Permalink
suffix in Property, fix lint, phetsims/chipper#1335
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 11, 2022
1 parent bb08e68 commit 3600ae2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/common/view/ParticleType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ class ParticleType extends EnumerationValue {
public static enumeration = new Enumeration( ParticleType );

public readonly label: string;
public readonly color: ProfileColorProperty;
public readonly colorProperty: ProfileColorProperty;

public constructor( label: string, color: ProfileColorProperty ) {
public constructor( label: string, colorProperty: ProfileColorProperty ) {
super();

this.label = label;
this.color = color;
this.colorProperty = colorProperty;

}
}
Expand Down

0 comments on commit 3600ae2

Please sign in to comment.