From f1ba2057317cac2a7d396ac2ac330d40f8481175 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Wed, 19 Oct 2011 16:01:13 -0400 Subject: [PATCH] cleaning up AMD comment. --- underscore.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/underscore.js b/underscore.js index 04f48d0c1..55b72818d 100644 --- a/underscore.js +++ b/underscore.js @@ -57,10 +57,7 @@ } exports._ = _; } else if (typeof define === 'function' && define.amd) { - // Register as a module with AMD. Use a named module since underscore - // can be used in optimization schemes that do not understand anonymous - // modules, and the if it is used on a page with an AMD loader, a load - // error could occur. + // Register as a named module with AMD. define('underscore', function() { return _; });