Skip to content

Commit ed41f52

Browse files
committed
Update artifacts
1 parent cc9bb00 commit ed41f52

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

stats/incr/nanmin/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[134,134,100,7,7,100,2,2,100,134,134,100,"46c348569dba5eabb0943667c94c284bff16d41b","2025-09-27 19:33:24 +0000"]
1+
[134,134,100,7,7,100,2,2,100,134,134,100,"6eec4698ca30024aec79a743be4a7858f29bcaaa","2025-09-27 14:43:58 -0500"]

stats/incr/nanmin/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1><a href="../../../../index.html">All files</a> stats/incr/nanmin/lib</h1>
116116
<div class='footer quiet pad2 space-top1 center small'>
117117
Code coverage generated by
118118
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119-
at 2025-09-27T19:35:20.241Z
119+
at 2025-09-27T19:46:02.392Z
120120
</div>
121121
<script src="../../../../prettify.js"></script>
122122
<script>

stats/incr/nanmin/index.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,24 +203,24 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
203203
* @module @stdlib/stats/incr/nanmin
204204
*
205205
* @example
206-
* var incrnanmin = require( '@stdlib/stats/incr/nanmin' )
206+
* var incrnanmin = require( '@stdlib/stats/incr/nanmin' );
207207
*
208208
* var accumulator = incrnanmin();
209209
*
210210
* var min = accumulator();
211211
* // returns null
212212
*
213-
* min = accumulator(3.14);
213+
* min = accumulator( 3.14 );
214214
* // returns 3.14
215215
*
216-
* min = accumulator(-5.0);
216+
* min = accumulator( -5.0 );
217217
* // returns -5.0
218218
*
219-
* min = accumulator(NaN);
219+
* min = accumulator( NaN );
220220
* // returns -5.0
221221
*
222222
* min = accumulator( 10.1 );
223-
* returns -5.0
223+
* // returns -5.0
224224
*
225225
* min = accumulator();
226226
* // returns -5.0
@@ -241,7 +241,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
241241
<div class='footer quiet pad2 space-top1 center small'>
242242
Code coverage generated by
243243
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
244-
at 2025-09-27T19:35:20.241Z
244+
at 2025-09-27T19:46:02.392Z
245245
</div>
246246
<script src="../../../../prettify.js"></script>
247247
<script>

stats/incr/nanmin/main.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
256256
* var min = accumulator();
257257
* // returns null
258258
*
259-
* min = accumulator(3.14);
259+
* min = accumulator( 3.14 );
260260
* // returns 3.14
261261
*
262-
* min = accumulator(-5.0);
262+
* min = accumulator( -5.0 );
263263
* // returns -5.0
264264
*
265-
* min = accumulator(NaN);
265+
* min = accumulator( NaN );
266266
* // returns -5.0
267267
*
268268
* min = accumulator( 10.1 );
@@ -276,7 +276,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
276276
return accumulator;
277277
&nbsp;
278278
/**
279-
* If provided a value, the accumulator function returns an updated minimum value. If not provided a value, the accumulator function returns the current min.
279+
* If provided a value, the accumulator function returns an updated minimum value. If not provided a value, the accumulator function returns the current minimum value.
280280
*
281281
* @private
282282
* @param {number} [x] - new value
@@ -301,7 +301,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
301301
<div class='footer quiet pad2 space-top1 center small'>
302302
Code coverage generated by
303303
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
304-
at 2025-09-27T19:35:20.241Z
304+
at 2025-09-27T19:46:02.392Z
305305
</div>
306306
<script src="../../../../prettify.js"></script>
307307
<script>

0 commit comments

Comments
 (0)