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 _; });