Skip to content

Commit

Permalink
rename event stream to data stream, phetsims/phet-io#1338
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Oct 4, 2018
1 parent 90654cb commit 17e3fae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/input/ButtonListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ define( function( require ) {

if ( this._buttonOptions[ state ] ) {

// Record this event to the phet-io event stream, including all downstream events as nested children
// Record this event to the phet-io data stream, including all downstream events as nested children
this.phetioStartEvent( state );

// Then invoke the callback
Expand All @@ -108,7 +108,7 @@ define( function( require ) {
this._overCount > 0 &&
( this._buttonOptions.fireOnDown ? ( state === 'down' ) : ( oldState === 'down' ) ) ) {

// Record this event to the phet-io event stream, including all downstream events as nested children
// Record this event to the phet-io data stream, including all downstream events as nested children
this.phetioStartEvent( 'fire' );

// Then fire the event
Expand Down

0 comments on commit 17e3fae

Please sign in to comment.