Skip to content

Commit e24c251

Browse files
committed
Fix paths
1 parent cedd0af commit e24c251

File tree

6 files changed

+11
-20
lines changed

6 files changed

+11
-20
lines changed

docs/migration-guides/lodash/data/lodash_4_17_x.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ partition,utils/bifurcate
8686
reduce,utils/reduce
8787
reduceRight,utils/reduce-right
8888
reject,(planned)
89-
sample,math/random
89+
sample,random/sample
9090
sampleSize,N/A
91-
shuffle,math/random
91+
shuffle,random/shuffle
9292
size,N/A
9393
some,utils/any-by
9494
sortBy,(planned)

docs/migration-guides/simple-statistics/data/simple_statistics_3_0_0.csv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ sampleCovariance,(planned)
3232
rSquared,(planned)
3333
linearRegression,(planned)
3434
linearRegressionLine,(planned)
35-
shuffle,math/random/shuffle
36-
shuffleInPlace,math/random/shuffle
37-
sampleWithReplacement,math/random/sample
38-
sample,math/random/sample
35+
shuffle,random/shuffle
36+
shuffleInPlace,random/shuffle
37+
sampleWithReplacement,random/sample
38+
sample,random/sample
3939
BayesianClassifer,(planned)
4040
PerceptronModel,(planned)
4141
bernoulliDistribution,math/base/dists/bernoulli

docs/migration-guides/underscore/data/underscore_1_18_3.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ sortBy,N/A
1919
groupBy,utils/group-by
2020
indexBy,(maybe)
2121
countBy,utils/count-by
22-
shuffle,math/random/*
23-
sample,math/random/*
22+
shuffle,random/shuffle
23+
sample,random/sample
2424
toArray,N/A
2525
size,N/A
2626
partition,utils/bifurcate

lib/node_modules/@stdlib/math/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,6 @@ setReadOnly( ns, 'base', require( '@stdlib/math/base' ) );
3636
*/
3737
setReadOnly( ns, 'constants', require( '@stdlib/math/constants' ) );
3838

39-
/**
40-
* @name random
41-
* @memberof ns
42-
* @readonly
43-
* @type {Namespace}
44-
* @see {@link module:@stdlib/math/random}
45-
*/
46-
setReadOnly( ns, 'random', require( '@stdlib/math/random' ) );
47-
4839
/**
4940
* @name stats
5041
* @memberof ns

lib/node_modules/@stdlib/math/stats/chi2gof/lib/chi2gof.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var incrspace = require( '@stdlib/math/utils/incrspace' );
1010
var chisqCDF = require( '@stdlib/math/base/dists/chisquare/cdf' );
1111
var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
1212
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
13-
var sample = require( '@stdlib/math/random/sample' );
13+
var sample = require( '@stdlib/random/sample' );
1414
var isnan = require( '@stdlib/assert/is-nan' );
1515
var copy = require( '@stdlib/utils/copy' );
1616
var testStatistic = require( './statistic.js' );

lib/node_modules/@stdlib/namespace/lib/namespace/s.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ ns.push({
3333

3434
ns.push({
3535
'alias': 'sample',
36-
'path': '@stdlib/math/random/sample',
37-
'value': require( '@stdlib/math/random/sample' ),
36+
'path': '@stdlib/random/sample',
37+
'value': require( '@stdlib/random/sample' ),
3838
'type': 'Function',
3939
'related': []
4040
});

0 commit comments

Comments
 (0)