From bc123d246a92f974161949eb1a0d36f9a5e723c3 Mon Sep 17 00:00:00 2001
From: Rich Trott <rtrott@gmail.com>
Date: Mon, 7 Sep 2015 11:13:07 -0700
Subject: [PATCH] doc: fix comma splice in Assertion Testing doc

---
 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])