From e63f44f798636bab9b67707b3183532f9a2bf62f Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 3 Dec 2010 10:03:50 -0500 Subject: [PATCH] period. --- underscore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underscore.js b/underscore.js index 5a0e4468e..87c5e4ec8 100644 --- a/underscore.js +++ b/underscore.js @@ -528,7 +528,7 @@ if (a == b) return true; // One is falsy and the other truthy. if ((!a && b) || (a && !b)) return false; - // Unwrap any wrapped objects + // Unwrap any wrapped objects. if (a._chain) a = a.value(); if (b._chain) b = b.value(); // One of them implements an isEqual()?