Skip to content

Commit 4c2f124

Browse files
committed
Comment typo
1 parent 00fe66d commit 4c2f124

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/shallowEqual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function shallowEqual(objA, objB) {
3737
return false;
3838
}
3939
}
40-
// Test for B'a keys missing from A.
40+
// Test for B's keys missing from A.
4141
for (key in objB) {
4242
if (objB.hasOwnProperty(key) && !objA.hasOwnProperty(key)) {
4343
return false;

0 commit comments

Comments
 (0)