Skip to content

Commit

Permalink
assert: Fixed typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
josephg committed Mar 31, 2017
1 parent 800ae46 commit 031f6f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ function objEquiv(a, b, strict, actualVisitedObjects) {
return false;
}

// Sets and maps don't have their entries accessable via normal object
// Sets and maps don't have their entries accessible via normal object
// properties.
if (isSet(a)) {
if (!isSet(b) || !setEquiv(a, b, strict, actualVisitedObjects))
Expand Down

0 comments on commit 031f6f3

Please sign in to comment.