Comment typo

This commit is contained in:
Andres Suarez
2014-09-04 12:00:43 -04:00
parent 00fe66ddec
commit 4c2f124aa8
+1 -1
View File
@@ -37,7 +37,7 @@ function shallowEqual(objA, objB) {
return false;
}
}
// Test for B'a keys missing from A.
// Test for B's keys missing from A.
for (key in objB) {
if (objB.hasOwnProperty(key) && !objA.hasOwnProperty(key)) {
return false;