Skip to content

Commit f42e77c

Browse files
committed
refactor: add newline for comment
1 parent 6ab90d8 commit f42e77c

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

lib/node_modules/@stdlib/stats/base/ndarray/dmean/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ var uniform = require( '@stdlib/random/array/uniform' );
2525
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pow = require( '@stdlib/math/base/special/pow' );
2727
var ndarray = require( '@stdlib/ndarray/base/ctor' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var dmean = require( './../lib/main.js' );
30-
var format = require( '@stdlib/string/format' );
3131

3232

3333
// VARIABLES //

lib/node_modules/@stdlib/stats/base/ndarray/dmean/benchmark/c/benchmark.length.c

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

19-
#include <sys/time.h>
20-
#include "stdlib/ndarray/base/bytes_per_element.h"
19+
#include "stdlib/stats/base/ndarray/dmean.h"
2120
#include "stdlib/ndarray/ctor.h"
2221
#include "stdlib/ndarray/dtypes.h"
2322
#include "stdlib/ndarray/index_modes.h"
2423
#include "stdlib/ndarray/orders.h"
25-
#include "stdlib/stats/base/ndarray/dmean.h"
26-
#include <math.h>
24+
#include "stdlib/ndarray/base/bytes_per_element.h"
2725
#include <stdint.h>
28-
#include <stdio.h>
2926
#include <stdlib.h>
27+
#include <stdio.h>
28+
#include <math.h>
3029
#include <time.h>
30+
#include <sys/time.h>
3131

3232
#define NAME "dmean"
3333
#define ITERATIONS 1000000

lib/node_modules/@stdlib/stats/base/ndarray/dmean/lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ var main = require( './main.js' );
4444

4545

4646
// MAIN //
47+
4748
var dmean;
4849
var tmp = tryRequire( join( __dirname, './native.js' ) );
4950
if ( isError( tmp ) ) {

lib/node_modules/@stdlib/stats/base/ndarray/dmean/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var Float64Array = require( '@stdlib/array/float64' );
2727
var ndarray = require( '@stdlib/ndarray/base/ctor' );
2828
var tryRequire = require( '@stdlib/utils/try-require' );
29-
const isPositiveZero = require('@stdlib/math/base/assert/is-positive-zero');
29+
var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
3030

3131

3232
// VARIABLES //

0 commit comments

Comments
 (0)