Skip to content

Commit c81f5f9

Browse files
authored
chore: fix spaces
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 4f2e9bb commit c81f5f9

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/array/fixed-endian-factory/lib

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
684684
* @memberof TypedArray.prototype
685685
* @type {Function}
686686
* @param {*} searchElement - element to search for
687-
* @param {integer} [fromIndex=this._length-1] - starting index ( inclusive )
687+
* @param {integer} [fromIndex=this._length-1] - starting index (inclusive)
688688
* @throws {TypeError} `this` must be a typed array instance
689689
* @throws {TypeError} second argument must be an integer
690690
* @returns {integer} index or -1
@@ -694,7 +694,7 @@ function factory( dtype ) { // eslint-disable-line max-lines-per-function, stdli
694694
var i;
695695

696696
if ( !isTypedArray( this ) ) {
697-
throw new TypeError(format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[ 0 ] ], CTOR_NAME ) );
697+
throw new TypeError( format( 'invalid invocation. `this` is not %s %s.', CHAR2ARTICLE[ dtype[ 0 ] ], CTOR_NAME ) );
698698
}
699699
if ( arguments.length > 1 ) {
700700
if ( !isInteger( fromIndex ) ) {

0 commit comments

Comments
 (0)