Skip to content

Commit

Permalink
none instead of VoidIO, phetsims/phet-io-wrappers#104
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Feb 26, 2021
1 parent acf7b02 commit 9df6830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/types/FunctionIO.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const FunctionIO = ( returnType, functionParameterTypes ) => {
// gather a list of argument names for the documentation string
let argsString = functionParameterTypes.map( parameterType => parameterType.typeName ).join( ', ' );
if ( argsString === '' ) {
argsString = 'VoidIO';
argsString = 'none';
}
const parameterTypesString = functionParameterTypes.map( parameterType => parameterType.typeName ).join( ',' );

Expand Down

0 comments on commit 9df6830

Please sign in to comment.