From 031f6f3235e524ef3f3af3cc0e05aa6beb723e55 Mon Sep 17 00:00:00 2001 From: Joseph Gentle Date: Fri, 31 Mar 2017 20:01:14 +1100 Subject: [PATCH] assert: Fixed typo in comment --- lib/assert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/assert.js b/lib/assert.js index 219613c065d1b4..b353e63b2ea400 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -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))