From a62ac240e54aa84dee5615b92f25d5bd6c0c3296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Sat, 4 Apr 2015 13:55:46 -0400 Subject: [PATCH] Remove trailing whitespaces --- lib/chai/core/assertions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/chai/core/assertions.js b/lib/chai/core/assertions.js index b2f9dd627..f34e2f512 100644 --- a/lib/chai/core/assertions.js +++ b/lib/chai/core/assertions.js @@ -93,7 +93,7 @@ module.exports = function (chai, _) { * ### .any * * Sets the `any` flag, (opposite of the `all` flag) - * later used in the `keys` assertion. + * later used in the `keys` assertion. * * expect(foo).to.have.any.keys('bar', 'baz'); * @@ -110,7 +110,7 @@ module.exports = function (chai, _) { /** * ### .all * - * Sets the `all` flag (opposite of the `any` flag) + * Sets the `all` flag (opposite of the `any` flag) * later used by the `keys` assertion. * * expect(foo).to.have.all.keys('bar', 'baz'); @@ -767,7 +767,7 @@ module.exports = function (chai, _) { * green: { tea: 'matcha' } * , teas: [ 'chai', 'matcha', { tea: 'konacha' } ] * }; - * + * * expect(deepObj).to.have.deep.property('green.tea', 'matcha'); * expect(deepObj).to.have.deep.property('teas[1]', 'matcha'); * expect(deepObj).to.have.deep.property('teas[2].tea', 'konacha');