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 <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
vsemozhetbyt authored and MylesBorins committed Dec 21, 2016
1 parent 02f5743 commit 06c33d5
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 @@ -339,7 +339,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 06c33d5

Please sign in to comment.