Skip to content
Closed
Prev Previous commit
Next Next commit
assert: Fixed typo in comment
  • Loading branch information
josephg committed Mar 31, 2017
commit 031f6f3235e524ef3f3af3cc0e05aa6beb723e55
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