We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00fe66d commit 4c2f124Copy full SHA for 4c2f124
1 file changed
src/utils/shallowEqual.js
@@ -37,7 +37,7 @@ function shallowEqual(objA, objB) {
37
return false;
38
}
39
40
- // Test for B'a keys missing from A.
+ // Test for B's keys missing from A.
41
for (key in objB) {
42
if (objB.hasOwnProperty(key) && !objA.hasOwnProperty(key)) {
43
0 commit comments