Skip to content

Commit 0e887d5

Browse files
committed
style: add missing spaces
1 parent ff25e13 commit 0e887d5

File tree

17 files changed

+26
-25
lines changed

17 files changed

+26
-25
lines changed

lib/node_modules/@stdlib/blas/ext/base/dcusumkbn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @param Y output array
4040
* @param strideY Y stride length
4141
*/
42-
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ){
42+
void API_SUFFIX(stdlib_strided_dcusumkbn)( const CBLAS_INT N, const double sum, const double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY ) {
4343
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
4444
const CBLAS_INT oy = stdlib_strided_stride2offset( N, strideY );
4545
API_SUFFIX(stdlib_strided_dcusumkbn_ndarray)( N, sum, X, strideX, ox, Y, strideY, oy );

lib/node_modules/@stdlib/blas/ext/base/snansum/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Add-on namespace.
3030
*/
31-
static napi_value addon( napi_env env, napi_callback_info info ){
31+
static napi_value addon( napi_env env, napi_callback_info info ) {
3232
STDLIB_NAPI_ARGV( env, info, argv, argc, 3 );
3333
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
3434
STDLIB_NAPI_ARGV_INT64( env, stride, argv, 2 );

lib/node_modules/@stdlib/math/base/ops/cdiv/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ stdlib_complex128_t stdlib_base_cdiv( const stdlib_complex128_t z1, const stdlib
126126

127127
t1 = stdlib_base_abs( re1 );
128128
t2 = stdlib_base_abs( im1 );
129-
if ( t1 > t2 ){
129+
if ( t1 > t2 ) {
130130
ab = t1;
131131
} else {
132132
ab = t2;
133133
}
134134
t1 = stdlib_base_abs( re2 );
135135
t2 = stdlib_base_abs( im2 );
136-
if ( t1 > t2 ){
136+
if ( t1 > t2 ) {
137137
cd = t1;
138138
} else {
139139
cd = t2;

lib/node_modules/@stdlib/math/base/special/beta/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
int i;
2929
int j;
3030
for ( i = 0; i < 5; i++ ) {
31-
for ( j = 0; j < 5; j++ ){
31+
for ( j = 0; j < 5; j++ ) {
3232
out = stdlib_base_beta( x[ i ], y[ j ] );
3333
printf ( "x: %lf, y: %lf, out: %lf\n", x[ i ], y[ j ], out );
3434
}

lib/node_modules/@stdlib/math/base/special/boxcox/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
int i;
2929
int j;
3030
for ( i = 0; i < 3; i++ ) {
31-
for ( j = 0; j < 3; j++ ){
31+
for ( j = 0; j < 3; j++ ) {
3232
out = stdlib_base_boxcox( x[ i ], y[ j ] );
3333
printf ( "x: %lf, y: %lf, out: %lf\n", x[ i ], y[ j ], out );
3434
}

lib/node_modules/@stdlib/math/base/special/boxcox1p/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
int i;
2929
int j;
3030
for ( i = 0; i < 3; i++ ) {
31-
for ( j = 0; j < 3; j++ ){
31+
for ( j = 0; j < 3; j++ ) {
3232
b = stdlib_base_boxcox1p( x[ i ], l[ j ] );
3333
printf ( "boxcox1p(%lf, %lf) = %lf\n", x[ i ], l[ j ], b );
3434
}

lib/node_modules/@stdlib/math/base/special/boxcox1pinv/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
int i;
2929
int j;
3030
for ( i = 0; i < 3; i++ ) {
31-
for ( j = 0; j < 3; j++ ){
31+
for ( j = 0; j < 3; j++ ) {
3232
b = stdlib_base_boxcox1pinv( y[ i ], l[ j ] );
3333
printf ( "boxcox1pinv(%lf, %lf) = %lf\n", y[ i ], l[ j ], b );
3434
}

lib/node_modules/@stdlib/math/base/special/boxcoxinv/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ int main( void ) {
2828
int i;
2929
int j;
3030
for ( i = 0; i < 3; i++ ) {
31-
for ( j = 0; j < 3; j++ ){
31+
for ( j = 0; j < 3; j++ ) {
3232
out = stdlib_base_boxcoxinv( x[ i ], y[ j ] );
3333
printf ( "y: %lf, x: %lf, out: %lf\n", x[ i ], y[ j ], out );
3434
}

lib/node_modules/@stdlib/math/base/special/ccis/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ stdlib_complex128_t stdlib_base_ccis( const stdlib_complex128_t z ) {
7171
// TODO: replace with stdlib/math/base/special/sincos
7272
y = stdlib_base_sin( re );
7373
x = stdlib_base_cos( re );
74-
if( im != 0.0 ){
74+
if( im != 0.0 ) {
7575
e = stdlib_base_exp( -im );
7676
y *= e;
7777
x *= e;

lib/node_modules/@stdlib/math/base/special/ceiln/src/ceiln.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static const double HUGE_VALUE = 1.0e+308;
6363
double stdlib_base_ceiln( const double x, const int32_t n ) {
6464
double s;
6565
double y;
66-
if ( stdlib_base_is_nan( x ) ){
66+
if ( stdlib_base_is_nan( x ) ) {
6767
return x;
6868
}
6969
if (

0 commit comments

Comments
 (0)