Skip to content

Commit 9c49c6c

Browse files
committed
Remove end comments
1 parent 8860e1f commit 9c49c6c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/cli/test/fixtures/stderr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Stream.prototype.constructor = Stream;
5353
*/
5454
Stream.prototype._write = function _write() { // eslint-disable-line no-underscore-dangle
5555
// noop
56-
}; // end METHOD _write()
56+
};
5757

5858

5959
// EXPORTS //

lib/node_modules/@stdlib/cli/test/fixtures/stdout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Stream.prototype.constructor = Stream;
5353
*/
5454
Stream.prototype._write = function _write() { // eslint-disable-line no-underscore-dangle
5555
// noop
56-
}; // end METHOD _write()
56+
};
5757

5858

5959
// EXPORTS //

lib/node_modules/@stdlib/ml/incr/binary-classification/lib/learner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function incrBinaryClassification( options ) {
194194

195195
// Update weights depending on the chosen loss function...
196196
_lossfun( _weights, x, y, eta, opts.lambda );
197-
}; // end METHOD _updateWithoutIntercept()
197+
};
198198

199199
/**
200200
* Predict response for a new observation with features `x`.
@@ -231,7 +231,7 @@ function incrBinaryClassification( options ) {
231231
}
232232

233233
return 1.0 / ( 1.0 + exp( -wx ) );
234-
}; // end METHOD predict()
234+
};
235235

236236
return model;
237237
}

lib/node_modules/@stdlib/ml/incr/sgd-regression/lib/learner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function incrSGDRegression( options ) {
181181

182182
// Update weights depending on the chosen loss function...
183183
_lossfun( _weights, x, y, eta, opts.lambda, opts.epsilon );
184-
}; // end METHOD _updateWithoutIntercept()
184+
};
185185

186186
/**
187187
* Predict response for a new observation with features `x`.
@@ -204,7 +204,7 @@ function incrSGDRegression( options ) {
204204
throw new TypeError( 'invalid input value. First argument `x` must be an array of length ' + this.nFeatures + '. Value: `' + x + '`' );
205205
}
206206
return _weights.innerProduct( x );
207-
}; // end METHOD predict()
207+
};
208208

209209
return model;
210210
}

lib/node_modules/@stdlib/process/read-stdin/test/fixtures/stdin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Stream.prototype.constructor = Stream;
5454
*/
5555
Stream.prototype._read = function _read() {
5656
// noop
57-
}; // end METHOD _read()
57+
};
5858

5959

6060
// EXPORTS //

0 commit comments

Comments
 (0)