diff --git a/js/browser-and-node/isInitialStateCompatible.ts b/js/browser-and-node/isInitialStateCompatible.ts index 0c29248b..8da1bd40 100644 --- a/js/browser-and-node/isInitialStateCompatible.ts +++ b/js/browser-and-node/isInitialStateCompatible.ts @@ -25,7 +25,7 @@ function areCompatible( groundTruthValue: IntentionalAny, testValue: Intentional } // The old array must have at least as many items as the new array - // TODO: AFTER_COMMIT hard code something for validValues for supporting sets, https://github.com/phetsims/phet-io/issues/1951 + // TODO: Hard code something for validValues for supporting sets? https://github.com/phetsims/phet-io/issues/1951 // key === 'validValues' -> treat as set if ( testValue.length !== groundTruthValue.length ) { return false; diff --git a/js/browser-and-node/phetioCompareAPIs.ts b/js/browser-and-node/phetioCompareAPIs.ts index 254a10d3..d42858ec 100644 --- a/js/browser-and-node/phetioCompareAPIs.ts +++ b/js/browser-and-node/phetioCompareAPIs.ts @@ -340,8 +340,8 @@ const phetioCompareAPIs = ( referenceAPI: PhetioAPI, proposedAPI: PhetioAPI, _: // Check for: missing IOTypes, missing methods, or differing parameter types or return types for ( const typeName in referenceAPI.phetioTypes ) { - // TODO: AFTER_COMMIT We need a notion of phetioDesigned for Type comparison. https://github.com/phetsims/phet-io/issues/1951 - // TODO: AFTER_COMMIT add comparison for stateSchema https://github.com/phetsims/phet-io/issues/1951 + // TODO: We need a notion of phetioDesigned for Type comparison. https://github.com/phetsims/phet-io/issues/1951 + // TODO: add comparison for stateSchema https://github.com/phetsims/phet-io/issues/1951 if ( referenceAPI.phetioTypes.hasOwnProperty( typeName ) ) {