Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: fix typo in assert code example
  • Loading branch information
vsemozhetbyt authored Nov 20, 2016
commit 10e063c96d754cfba2d2248515bfe8422e7a01f1
2 changes: 1 addition & 1 deletion doc/api/assert.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ assert.notStrictEqual(1, 2);
// OK

assert.notStrictEqual(1, 1);
// AssertionError: 1 != 1
// AssertionError: 1 !== 1

assert.notStrictEqual(1, '1');
// OK
Expand Down