Skip to content

Commit

Permalink
remove space between method name and opening parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsofaly committed Jan 22, 2017
1 parent 251fa57 commit 38d3cca
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/chai/utils/addChainableMethod.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/addMethod.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/addProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/compareByInspect.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/objDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/overwriteChainableMethod.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/overwriteMethod.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/chai/utils/overwriteProperty.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 38d3cca

Please sign in to comment.