Skip to content

Commit

Permalink
doc: fix comma splice in Assertion Testing doc
Browse files Browse the repository at this point in the history
This fixes a minor typographical error in the Assertion Testing doc.

PR-URL: #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>
  • Loading branch information
Trott authored and rvagg committed Sep 12, 2015
1 parent 1428661 commit 4fdccb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/assert.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down

0 comments on commit 4fdccb9

Please sign in to comment.