From 4c2f124aa8a4e75f6715a33bcb5cb3e6fcb63c0e Mon Sep 17 00:00:00 2001 From: Andres Suarez Date: Thu, 4 Sep 2014 12:00:43 -0400 Subject: [PATCH] Comment typo --- src/utils/shallowEqual.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/shallowEqual.js b/src/utils/shallowEqual.js index be0aca12ef..63d2159361 100644 --- a/src/utils/shallowEqual.js +++ b/src/utils/shallowEqual.js @@ -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;