From 38d3ccaf0cdfabc45cff31f1b4ede12d5c60d56e Mon Sep 17 00:00:00 2001 From: Aaron Sofaly Date: Sun, 22 Jan 2017 15:06:15 -0700 Subject: [PATCH] remove space between method name and opening parenthesis --- lib/chai/utils/addChainableMethod.js | 2 +- lib/chai/utils/addMethod.js | 2 +- lib/chai/utils/addProperty.js | 2 +- lib/chai/utils/compareByInspect.js | 2 +- lib/chai/utils/objDisplay.js | 2 +- lib/chai/utils/overwriteChainableMethod.js | 2 +- lib/chai/utils/overwriteMethod.js | 2 +- lib/chai/utils/overwriteProperty.js | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/chai/utils/addChainableMethod.js b/lib/chai/utils/addChainableMethod.js index 783c7c4..7cb4e49 100644 --- a/lib/chai/utils/addChainableMethod.js +++ b/lib/chai/utils/addChainableMethod.js @@ -33,7 +33,7 @@ var call = Function.prototype.call, apply = Function.prototype.apply; /** - * ### .addChainableMethod (ctx, name, method, chainingBehavior) + * ### .addChainableMethod(ctx, name, method, chainingBehavior) * * Adds a method to an object, such that the method can also be chained. * diff --git a/lib/chai/utils/addMethod.js b/lib/chai/utils/addMethod.js index a5d3206..56bd5b8 100644 --- a/lib/chai/utils/addMethod.js +++ b/lib/chai/utils/addMethod.js @@ -11,7 +11,7 @@ var proxify = require('./proxify'); var transferFlags = require('./transferFlags'); /** - * ### .addMethod (ctx, name, method) + * ### .addMethod(ctx, name, method) * * Adds a method to the prototype of an object. * diff --git a/lib/chai/utils/addProperty.js b/lib/chai/utils/addProperty.js index fcb1b0c..d3757e6 100644 --- a/lib/chai/utils/addProperty.js +++ b/lib/chai/utils/addProperty.js @@ -10,7 +10,7 @@ var isProxyEnabled = require('./isProxyEnabled'); var transferFlags = require('./transferFlags'); /** - * ### .addProperty (ctx, name, getter) + * ### .addProperty(ctx, name, getter) * * Adds a property to the prototype of an object. * diff --git a/lib/chai/utils/compareByInspect.js b/lib/chai/utils/compareByInspect.js index 708ff28..fde48d4 100644 --- a/lib/chai/utils/compareByInspect.js +++ b/lib/chai/utils/compareByInspect.js @@ -11,7 +11,7 @@ var inspect = require('./inspect'); /** - * ### .compareByInspect (mixed, mixed) + * ### .compareByInspect(mixed, mixed) * * To be used as a compareFunction with Array.prototype.sort. Compares elements * using inspect instead of default behavior of using toString so that Symbols diff --git a/lib/chai/utils/objDisplay.js b/lib/chai/utils/objDisplay.js index d87d938..32eacfa 100644 --- a/lib/chai/utils/objDisplay.js +++ b/lib/chai/utils/objDisplay.js @@ -12,7 +12,7 @@ var inspect = require('./inspect'); var config = require('../config'); /** - * ### .objDisplay (object) + * ### .objDisplay(object) * * Determines if an object or an array matches * criteria to be inspected in-line for error diff --git a/lib/chai/utils/overwriteChainableMethod.js b/lib/chai/utils/overwriteChainableMethod.js index 90c638a..3ca9224 100644 --- a/lib/chai/utils/overwriteChainableMethod.js +++ b/lib/chai/utils/overwriteChainableMethod.js @@ -8,7 +8,7 @@ var chai = require('../../chai'); var transferFlags = require('./transferFlags'); /** - * ### .overwriteChainableMethod (ctx, name, method, chainingBehavior) + * ### .overwriteChainableMethod(ctx, name, method, chainingBehavior) * * Overwites an already existing chainable method * and provides access to the previous function or diff --git a/lib/chai/utils/overwriteMethod.js b/lib/chai/utils/overwriteMethod.js index 52db880..004b85c 100644 --- a/lib/chai/utils/overwriteMethod.js +++ b/lib/chai/utils/overwriteMethod.js @@ -11,7 +11,7 @@ var proxify = require('./proxify'); var transferFlags = require('./transferFlags'); /** - * ### .overwriteMethod (ctx, name, fn) + * ### .overwriteMethod(ctx, name, fn) * * Overwites an already existing method and provides * access to previous function. Must return function diff --git a/lib/chai/utils/overwriteProperty.js b/lib/chai/utils/overwriteProperty.js index a22d68c..73e6218 100644 --- a/lib/chai/utils/overwriteProperty.js +++ b/lib/chai/utils/overwriteProperty.js @@ -10,7 +10,7 @@ var isProxyEnabled = require('./isProxyEnabled'); var transferFlags = require('./transferFlags'); /** - * ### .overwriteProperty (ctx, name, fn) + * ### .overwriteProperty(ctx, name, fn) * * Overwites an already existing property getter and provides * access to previous value. Must return function to use as getter.