Skip to content

Commit 494a4f9

Browse files
authored
style: adjust spacing
Signed-off-by: Athan <kgryte@gmail.com>
1 parent e8e1a88 commit 494a4f9

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ndarray/dsumkbn2/docs/types

lib/node_modules/@stdlib/blas/ext/base/ndarray/dsumkbn2/docs/types/test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable space-in-parens */
20+
1921
import zeros = require( '@stdlib/ndarray/zeros' );
2022
import dsumkbn2 = require( './index' );
2123

@@ -26,7 +28,7 @@ import dsumkbn2 = require( './index' );
2628
{
2729
const x = zeros( [ 10 ], {
2830
'dtype': 'float64'
29-
} );
31+
});
3032

3133
dsumkbn2( [ x ] ); // $ExpectType number
3234
}
@@ -48,7 +50,7 @@ import dsumkbn2 = require( './index' );
4850
{
4951
const x = zeros( [ 10 ], {
5052
'dtype': 'float64'
51-
} );
53+
});
5254

5355
dsumkbn2(); // $ExpectError
5456
dsumkbn2( [ x ], {} ); // $ExpectError

0 commit comments

Comments
 (0)