Skip to content

Commit 7cc9f16

Browse files
committed
Auto-generated commit
1 parent a8a3a36 commit 7cc9f16

File tree

4 files changed

+37
-16
lines changed

4 files changed

+37
-16
lines changed

.gitattributes

+23-6
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,27 @@
4040
*.mov binary
4141

4242
# Override what is considered "vendored" by GitHub's linguist:
43-
/deps/** linguist-vendored=false
44-
/lib/node_modules/** linguist-vendored=false linguist-generated=false
45-
test/fixtures/** linguist-vendored=false
46-
tools/** linguist-vendored=false
43+
/lib/node_modules/** -linguist-vendored -linguist-generated
4744

48-
# Override what is considered "documentation" by GitHub's linguist:
49-
examples/** linguist-documentation=false
45+
# Configure directories which should *not* be included in GitHub language statistics:
46+
/deps/** linguist-vendored
47+
/dist/** linguist-generated
48+
/workshops/** linguist-vendored
49+
50+
benchmark/** linguist-vendored
51+
docs/* linguist-documentation
52+
etc/** linguist-vendored
53+
examples/** linguist-documentation
54+
scripts/** linguist-vendored
55+
test/** linguist-vendored
56+
tools/** linguist-vendored
57+
58+
# Configure files which should *not* be included in GitHub language statistics:
59+
Makefile linguist-vendored
60+
*.mk linguist-vendored
61+
*.jl linguist-vendored
62+
*.py linguist-vendored
63+
*.R linguist-vendored
64+
65+
# Configure files which should be included in GitHub language statistics:
66+
docs/types/*.d.ts -linguist-documentation

CONTRIBUTORS

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Adarsh Palaskar <[email protected]>
66
Aditya Sapra <[email protected]>
77
AgPriyanshu18 <[email protected]>
8+
Aleksandr <[email protected]>
89
Ali Salesi <[email protected]>
910
Aman Bhansali <[email protected]>
1011
Amit Jimiwal <[email protected]>
@@ -18,6 +19,7 @@ Chinmay Joshi <[email protected]>
1819
Christopher Dambamuromo <[email protected]>
1920
2021
Daniel Killenberger <[email protected]>
22+
Daniel Yu <[email protected]>
2123
Dominik Moritz <[email protected]>
2224
Dorrin Sotoudeh <[email protected]>
2325
EuniceSim142 <[email protected]>
@@ -69,8 +71,11 @@ Seyyed Parsa Neshaei <[email protected]>
6971
Shashank Shekhar Singh <[email protected]>
7072
7173
Shraddheya Shendre <[email protected]>
74+
Shubh Mehta <[email protected]>
7275
Shubham Mishra <[email protected]>
76+
Sivam Das <[email protected]>
7377
Snehil Shah <[email protected]>
78+
Soumajit Chatterjee <[email protected]>
7479
Spandan Barve <[email protected]>
7580
Stephannie Jiménez Gacha <[email protected]>
7681
Suraj kumar <[email protected]>
@@ -79,8 +84,10 @@ Tudor Pagu <[email protected]>
7984
Utkarsh <http://[email protected]>
8085
Utkarsh Raj <[email protected]>
8186
Varad Gupta <[email protected]>
87+
Xiaochuan Ye <[email protected]>
8288
Yernar Yergaziyev <[email protected]>
8389
8490
nishant-s7 <[email protected]>
8591
orimiles5 <[email protected]>
92+
8693

incr/mpcorr/lib/main.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable max-lines-per-function */
20+
1921
'use strict';
2022

2123
// MODULES //

ztest/lib/index.js

+5-10
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,20 @@
2424
* @module @stdlib/stats/ztest
2525
*
2626
* @example
27-
* var ztest = require( '@stdlib/stats/ztest' );
2827
* var normal = require( '@stdlib/random/base/normal' ).factory;
28+
* var ztest = require( '@stdlib/stats/ztest' );
2929
*
30-
* var rnorm;
31-
* var out;
32-
* var i;
33-
* var x;
34-
* var y;
35-
*
36-
* rnorm = normal( 1.0, 2.0, {
30+
* var rnorm = normal( 1.0, 2.0, {
3731
* 'seed': 786
3832
* });
3933
*
4034
* // One-sample z-test:
41-
* x = new Array( 300 );
35+
* var x = new Array( 300 );
36+
* var i;
4237
* for ( i = 0; i < x.length; i++ ) {
4338
* x[ i ] = rnorm();
4439
* }
45-
* out = ztest( x, 2.0 );
40+
* var out = ztest( x, 2.0 );
4641
*/
4742

4843
// MODULES //

0 commit comments

Comments
 (0)