File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/array/fixed-endian-factory/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ) {
You can’t perform that action at this time.
0 commit comments