doc: fix typo in assert code example

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
Vse Mozhet Byt 2016-11-20 04:20:35 +02:00 committed by Luigi Pinca
parent 52fd49b7ff
commit 929fd4a892

View File

@ -345,7 +345,7 @@ assert.notStrictEqual(1, 2);
// OK
assert.notStrictEqual(1, 1);
// AssertionError: 1 != 1
// AssertionError: 1 !== 1
assert.notStrictEqual(1, '1');
// OK