Skip to content

Commit 033692f

Browse files
committed
Auto-generated commit
1 parent 1b3ccbe commit 033692f

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ A total of 43 issues were closed in this release:
475475

476476
<details>
477477

478+
- [`bef362e`](https://github.com/stdlib-js/stdlib/commit/bef362efc111b0109adf21c219b08a407417d1f7) - **docs:** update phrasing in `wrap` function description _(by Karan Anand)_
478479
- [`d3e9457`](https://github.com/stdlib-js/stdlib/commit/d3e9457065368cd4f97c993ac300d408c7cde4d2) - **docs:** remove BSD-3-Clause from license field _(by Karan Anand)_
479480
- [`f10839a`](https://github.com/stdlib-js/stdlib/commit/f10839a93d9dc6082a1a699d98dff51540603173) - **test:** update test messages _(by Karan Anand)_
480481
- [`3830189`](https://github.com/stdlib-js/stdlib/commit/383018955516c08e11189d7afce9826976c60808) - **docs:** remove redundant imports _(by Karan Anand)_

base/special/wrap/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# wrap
2222

23-
> Wrap a value on the half-open interval `[min,max)`.
23+
> Wrap a value to the half-open interval `[min,max)`.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var wrap = require( '@stdlib/math/base/special/wrap' );
4242

4343
#### wrap( v, min, max )
4444

45-
Wraps a value on the half-open interval `[min,max)`.
45+
Wraps a value to the half-open interval `[min,max)`.
4646

4747
```javascript
4848
var v = wrap( 3.14, 0.0, 5.0 );
@@ -152,7 +152,7 @@ logEachMap( 'wrap(%d,%d,%d) => %0.4f', v, min, max, wrap );
152152

153153
#### stdlib_base_wrap( v, min, max )
154154

155-
Wraps a value on the half-open interval `[min,max)`.
155+
Wraps a value to the half-open interval `[min,max)`.
156156

157157
```c
158158
double v = stdlib_base_wrap( 3.14, 0.0, 5.0 );

base/special/wrap/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( v, min, max )
3-
Wraps a value on the half-open interval `[min,max)`.
3+
Wraps a value to the half-open interval `[min,max)`.
44

55
The function does not distinguish between positive and negative zero. Where
66
appropriate, the function returns positive zero.

base/special/wrap/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Wraps a value on the half-open interval `[min,max)`.
22+
* Wraps a value to the half-open interval `[min,max)`.
2323
*
2424
* @param v - input value
2525
* @param min - minimum value

base/special/wrap/include/stdlib/math/base/special/wrap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Wraps a value on the half-open interval [min,max).
30+
* Wraps a value to the half-open interval [min,max).
3131
*/
3232
double stdlib_base_wrap( const double v, const double min, const double max );
3333

base/special/wrap/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Wrap a value on the half-open interval `[min,max)`.
22+
* Wrap a value to the half-open interval `[min,max)`.
2323
*
2424
* @module @stdlib/math/base/special/wrap
2525
*

base/special/wrap/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var trunc = require( './../../../../base/special/trunc' );
2727
// MAIN //
2828

2929
/**
30-
* Wraps a value on the half-open interval `[min,max)`.
30+
* Wraps a value to the half-open interval `[min,max)`.
3131
*
3232
* @param {number} v - input value
3333
* @param {number} min - minimum value

base/special/wrap/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Wraps a value on the half-open interval `[min,max)`.
29+
* Wraps a value to the half-open interval `[min,max)`.
3030
*
3131
* @private
3232
* @param {number} v - input value

base/special/wrap/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/math/base/special/wrap",
33
"version": "0.0.0",
4-
"description": "Wrap a value on the half-open interval [min,max).",
4+
"description": "Wrap a value to the half-open interval [min,max).",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

base/special/wrap/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "stdlib/math/base/assert/is_negative_zero.h"
2424

2525
/**
26-
* Wraps a value on the half-open interval [min,max).
26+
* Wraps a value to the half-open interval [min,max).
2727
*
2828
* @param v input value
2929
* @param min minimum value

0 commit comments

Comments
 (0)