Skip to content

Commit

Permalink
fix(lib): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Dec 12, 2017
1 parent 3a53b9e commit 4114448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shallow-equal-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ export const shallowEqual = (
const out = options.console || console;
out.group(`shallow-equal-object`);
out.log(`key:${key} is not equals between A and B.`);
out.log(`objectA[${key}:`, objectA[key]);
out.log(`objectB[${key}:`, objectB[key]);
out.log(`objectA[${key}]:`, objectA[key]);
out.log(`objectB[${key}]:`, objectB[key]);
out.log("objectA", objectA);
out.log("objectB", objectB);
out.groupEnd();
Expand Down

0 comments on commit 4114448

Please sign in to comment.