From ae172a7a341299483f6f0987fb04c4ce728be27a Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sat, 13 Apr 2013 12:34:49 -0400 Subject: [PATCH] Corrected missing whitespace on interface instantiation error message --- lib/interface.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/interface.js b/lib/interface.js index f918a37..9152da0 100644 --- a/lib/interface.js +++ b/lib/interface.js @@ -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" ); }