You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ var mskbinary5d = require( '@stdlib/array-base-mskbinary5d' );
74
74
Applies a binary callback to elements in two five-dimensional nested input arrays according to elements in a five-dimensional nested mask array and assigns results to elements in a five-dimensional nested output array.
75
75
76
76
```javascript
77
-
var add =require( '@stdlib/math-base-ops-add' );
77
+
var add =require( '@stdlib/number-float64-base-add' );
78
78
var zeros5d =require( '@stdlib/array-base-zeros5d' );
79
79
80
80
var x = [ [ [ [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ] ] ] ];
@@ -119,7 +119,7 @@ var discreteUniform = require( '@stdlib/random-base-discrete-uniform' ).factory;
119
119
var bernoulli =require( '@stdlib/random-base-bernoulli' ).factory;
120
120
var filled5dBy =require( '@stdlib/array-base-filled5d-by' );
121
121
var zeros5d =require( '@stdlib/array-base-zeros5d' );
122
-
var add =require( '@stdlib/math-base-ops-add' );
122
+
var add =require( '@stdlib/number-float64-base-add' );
123
123
var mskbinary5d =require( '@stdlib/array-base-mskbinary5d' );
124
124
125
125
var shape = [ 1, 2, 1, 3, 3 ];
@@ -178,7 +178,7 @@ See [LICENSE][stdlib-license].
0 commit comments