Merge pull request #2144 from zertosh/master

Comment typo
This commit is contained in:
Paul O’Shannessy
2014-09-08 19:37:00 -07:00
+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;