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
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ var v = max.ndarray( N, x, 2, 1 );
153
153
## Notes
154
154
155
155
- If `N <= 0`, both functions return `NaN`.
156
-
- Depending on the environment, the typed versions ([`dmax`][@stdlib/stats/base/dmax], [`smax`][@stdlib/stats/base/smax], etc.) are likely to be significantly more performant.
156
+
- Depending on the environment, the typed versions ([`dmax`][@stdlib/stats/strided/dmax], [`smax`][@stdlib/stats/base/smax], etc.) are likely to be significantly more performant.
157
157
158
158
</section>
159
159
@@ -196,7 +196,7 @@ console.log( v );
196
196
197
197
## See Also
198
198
199
-
- <spanclass="package-name">[`@stdlib/stats-base/dmax`][@stdlib/stats/base/dmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array.</span>
199
+
- <spanclass="package-name">[`@stdlib/stats-strided/dmax`][@stdlib/stats/strided/dmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array.</span>
200
200
- <spanclass="package-name">[`@stdlib/stats-base/min`][@stdlib/stats/base/min]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array.</span>
201
201
- <spanclass="package-name">[`@stdlib/stats-base/nanmax`][@stdlib/stats/base/nanmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array, ignoring NaN values.</span>
202
202
- <spanclass="package-name">[`@stdlib/stats-base/smax`][@stdlib/stats/base/smax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a single-precision floating-point strided array.</span>
@@ -231,7 +231,7 @@ See [LICENSE][stdlib-license].
0 commit comments