From 4fdccb9eb740b85d432af8986a19ad3270951e2a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 7 Sep 2015 11:13:07 -0700 Subject: [PATCH] doc: fix comma splice in Assertion Testing doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes a minor typographical error in the Assertion Testing doc. PR-URL: https://github.com/nodejs/node/pull/2728 Reviewed-By: Colin Ihrig Reviewed-By: Michaël Zasso Reviewed-By: Johan Bergström --- doc/api/assert.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/assert.markdown b/doc/api/assert.markdown index 787f159e58d709..59b7155bf99619 100644 --- a/doc/api/assert.markdown +++ b/doc/api/assert.markdown @@ -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])