Skip to content

Commit 5d67779

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 61f3077 commit 5d67779

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ static double random_uniform( const double min, const double max ) {
229229
}
230230
231231
int main( void ) {
232+
double lambda;
232233
double p;
233234
double k;
234-
double lambda;
235235
double y;
236236
int i;
237237

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ bench( pkg, function benchmark( b ) {
6464
b.end();
6565
});
6666

67-
bench( pkg + ':factory', function benchmark( b ) {
67+
bench( pkg+':factory', function benchmark( b ) {
6868
var myquantile;
6969
var lambda;
7070
var len;

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var opts = {
3939

4040
// MAIN //
4141

42-
bench( pkg + '::native', opts, function benchmark( b ) {
42+
bench( pkg+'::native', opts, function benchmark( b ) {
4343
var lambda;
4444
var len;
4545
var p;

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include <sys/time.h>
2019
#include "stdlib/stats/base/dists/weibull/quantile.h"
20+
#include <sys/time.h>
2121
#include <math.h>
2222
#include <stdio.h>
2323
#include <stdlib.h>

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ static double random_uniform( const double min, const double max ) {
2626
}
2727

2828
int main( void ) {
29+
double lambda;
2930
double p;
3031
double k;
31-
double lambda;
3232
double y;
3333
int i;
3434

0 commit comments

Comments
 (0)