Skip to content

Commit

Permalink
doc: fix typo in assert code example
Browse files Browse the repository at this point in the history
PR-URL: #9704
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Sakthipriyan Vairamani <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
vsemozhetbyt authored and Fishrock123 committed Nov 22, 2016
1 parent 0a3e5cc commit fa98eec
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit fa98eec

Please sign in to comment.