From 88e6b32b510503b5ccfc830ac487e834ffa0d324 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Thu, 12 Jan 2012 16:18:15 -0500 Subject: [PATCH] Fixes #822, change comment to avoid 'confusing' reference to super --- backbone.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone.js b/backbone.js index 6e9099b3..fc58dd12 100644 --- a/backbone.js +++ b/backbone.js @@ -1088,7 +1088,7 @@ // The constructor function for the new subclass is either defined by you // (the "constructor" property in your `extend` definition), or defaulted - // by us to simply call `super()`. + // by us to simply call the parent's constructor. if (protoProps && protoProps.hasOwnProperty('constructor')) { child = protoProps.constructor; } else {