doc: fix comma splice in Assertion Testing doc
authorRich Trott <rtrott@gmail.com>
Mon, 7 Sep 2015 18:13:07 +0000 (11:13 -0700)
committerRod Vagg <rod@vagg.org>
Tue, 8 Sep 2015 23:05:11 +0000 (09:05 +1000)
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>
doc/api/assert.markdown

index 787f159e58d709bc4c2a5188f79e214d945bf0cf..59b7155bf996199bbbd615e60d7d35bcd80f8dfa 100644 (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])