From c980a592730ad50255ebf1f11f52ff5f387c11e6 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 14 Apr 2011 20:28:42 -0400 Subject: [PATCH] Comment correction for static members --- lib/class_builder.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/class_builder.js b/lib/class_builder.js index da45d80..39c18de 100644 --- a/lib/class_builder.js +++ b/lib/class_builder.js @@ -658,8 +658,7 @@ function attachStatic( ctor, members, base, inheriting ) }; } - // copy over public static members (deep copy; we don't want subtypes to - // share references with their parents) + // copy over public static methods util.copyTo( ctor, methods[ 'public' ], true ); }