From cbd8c1c8ba5457713bf43b56196d634a9c02d08d Mon Sep 17 00:00:00 2001 From: samreid Date: Wed, 3 Jun 2020 09:47:20 -0600 Subject: [PATCH] Use InvertedBooleanProperty, see https://github.com/phetsims/wave-interference/issues/426 --- js/InvertedBooleanProperty.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/InvertedBooleanProperty.js b/js/InvertedBooleanProperty.js index bc1b605c..94df7ef4 100644 --- a/js/InvertedBooleanProperty.js +++ b/js/InvertedBooleanProperty.js @@ -1,7 +1,8 @@ // Copyright 2019-2020, University of Colorado Boulder /** - * a boolean property that is always the opposite of the provided boolean property + * A boolean property that is always the opposite of the provided boolean property + * @author John Blanco (PhET Interactive Simulations) */ import BooleanProperty from '../../axon/js/BooleanProperty.js';