Skip to content

Commit f5c3fef

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent ce3e4b1 commit f5c3fef

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/array/fixed-endian-factory/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,6 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
10531053
* @throws {TypeError} first argument must be a string or an array of strings
10541054
* @throws {TypeError} options argument must be an object
10551055
* @returns {string} string representation
1056-
*
10571056
*/
10581057
setReadOnly( TypedArray.prototype, 'toLocaleString', function toLocaleString( locales, options ) {
10591058
var opts;

lib/node_modules/@stdlib/array/fixed-endian-factory/test/test.to_locale_string.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tape( 'the function returns a function', function test( t ) {
4040
t.end();
4141
});
4242

43-
tape( 'attached to the prototype of the returned function is an `toLocaleString` method', function test( t ) {
43+
tape( 'attached to the prototype of the returned function is a `toLocaleString` method', function test( t ) {
4444
var ctor = factory( 'float64' );
4545
t.strictEqual( hasOwnProp( ctor.prototype, 'toLocaleString' ), true, 'returns expected value' );
4646
t.strictEqual( isFunction( ctor.prototype.toLocaleString ), true, 'returns expected value' );

0 commit comments

Comments
 (0)