Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Sep 20, 2019
1 parent f73877e commit 5342e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/Property.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ define( require => {
// Use this to detect or prevent update cycles. Update cycles may be due to floating point error,
// faulty logic, etc. This may be of particular interest for PhET-iO instrumentation, where such
// cycles may pollute the data stream. See https://github.com/phetsims/axon/issues/179
reentrant: false,
reentrant: false

// Property also supports validator options, see ValidatorDef.VALIDATOR_KEYS.

Expand Down
2 changes: 1 addition & 1 deletion js/ValidatorDef.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ define( require => {
else {

// if not an array, then just check the array element
return ValidatorDef.isValueValidValueType( arrayElement, validator.arrayElementType, options )
return ValidatorDef.isValueValidValueType( arrayElement, validator.arrayElementType, options );
}
} ) ) ) {
return false; // if every element didn't pass, then return false
Expand Down

0 comments on commit 5342e0e

Please sign in to comment.