doc: fix comma splice in Assertion Testing doc

This fixes a minor typographical error in the Assertion Testing doc.

PR-URL: https://github.com/nodejs/node/pull/2728
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
pull/2728/merge
Rich Trott 2015-09-07 11:13:07 -07:00
parent 297b9ae147
commit 8f87169805
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Throws an exception that displays the values for `actual` and `expected` separat
## assert(value[, message]), assert.ok(value[, message])
Tests if value is truthy, it is equivalent to `assert.equal(true, !!value, message);`
Tests if value is truthy. It is equivalent to `assert.equal(true, !!value, message)`.
## assert.equal(actual, expected[, message])