1
0
Fork 0

Corrected missing whitespace on interface instantiation error message

perfodd
Mike Gerwitz 2013-04-13 12:34:49 -04:00
parent b4fe08292f
commit ae172a7a34
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ var extend = ( function( extending )
// only called if someone tries to create a new instance of an
// interface
throw Error(
"Interface" + ( ( iname ) ? ( iname + ' ' ) : '' ) +
"Interface " + ( ( iname ) ? ( iname + ' ' ) : '' ) +
" cannot be instantiated"
);
}