We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cca3526 commit ef7444cCopy full SHA for ef7444c
doc/api/assert.md
@@ -435,13 +435,13 @@ assert.notDeepEqual(obj1, obj1);
435
// AssertionError: { a: { b: 1 } } notDeepEqual { a: { b: 1 } }
436
437
assert.notDeepEqual(obj1, obj2);
438
-// OK, obj1 and obj2 are not deeply equal
+// OK: obj1 and obj2 are not deeply equal
439
440
assert.notDeepEqual(obj1, obj3);
441
442
443
assert.notDeepEqual(obj1, obj4);
444
-// OK, obj1 and obj4 are not deeply equal
+// OK: obj1 and obj4 are not deeply equal
445
```
446
447
If the values are deeply equal, an `AssertionError` is thrown with a `message`
0 commit comments