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 4d6dd7c commit b941c55
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/NumberLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class NumberLine {
// exist on the number line when constructed and after a reset
this.initialPointSpecs = options.initialPointSpecs;

// @public (read-only) {ObservableArray<NumberLinePoint>} - array of points on this number line
// @public (read-only) {ObservableArrayDef<NumberLinePoint>} - array of points on this number line
this.residentPoints = createObservableArray();

// hook up a listener to make sure that the points don't land on top of one another
Expand Down
2 changes: 1 addition & 1 deletion js/common/model/PointController.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class PointController {
// @public (read-only) {Animation|null} - tracks any animation that is currently in progress
this.inProgressAnimationProperty = new Property( null );

// @public (read-only) {ObservableArray<NumberLinePoint>} - points on the number line that this controls
// @public (read-only) {ObservableArrayDef<NumberLinePoint>} - points on the number line that this controls
this.numberLinePoints = createObservableArray();

// add the initial number line points
Expand Down

0 comments on commit b941c55

Please sign in to comment.