mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Comment typo
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user