From b5c597f7a2969d6acbbc826e7175e98d7568b8cf Mon Sep 17 00:00:00 2001 From: BinaryMuse Date: Mon, 1 Jun 2015 11:57:32 -0700 Subject: [PATCH] Remove stray character in `assert.notInclude` docs --- lib/chai/interface/assert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chai/interface/assert.js b/lib/chai/interface/assert.js index 56a688bbb..30b1bb41f 100644 --- a/lib/chai/interface/assert.js +++ b/lib/chai/interface/assert.js @@ -700,7 +700,7 @@ module.exports = function (chai, util) { * * Asserts that `haystack` does not include `needle`. Works * for strings and arrays. - *i + * * assert.notInclude('foobar', 'baz', 'string not include substring'); * assert.notInclude([ 1, 2, 3 ], 4, 'array not include contain value'); *