From 2675bbb7e1309d1dd428a5bb1c5ac075a34674fc Mon Sep 17 00:00:00 2001 From: Mitchell Johnson Date: Tue, 7 Apr 2015 12:39:36 -0400 Subject: [PATCH] Fix a small bug in the .null assertion docs --- lib/chai/core/assertions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chai/core/assertions.js b/lib/chai/core/assertions.js index f34e2f512..c398ab8e2 100644 --- a/lib/chai/core/assertions.js +++ b/lib/chai/core/assertions.js @@ -291,7 +291,7 @@ module.exports = function (chai, _) { * Asserts that the target is `null`. * * expect(null).to.be.null; - * expect(undefined).not.to.be.null; + * expect(undefined).to.not.be.null; * * @name null * @api public