Skip to content

Commit b465716

Browse files
committed
Auto-generated commit
1 parent a0a7bac commit b465716

17 files changed

Lines changed: 17 additions & 16 deletions

File tree

CHANGELOG.md

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

734734
<details>
735735

736+
- [`906bab9`](https://github.com/stdlib-js/stdlib/commit/906bab98b9f33bc8c3a92e58eeafa2942990d5ab) - **docs:** propagate lint and example fixes to `math` and `stats` siblings [(#12146)](https://github.com/stdlib-js/stdlib/pull/12146) _(by Philipp Burckhardt)_
736737
- [`7b1cb99`](https://github.com/stdlib-js/stdlib/commit/7b1cb991f5525a57cfa7254bb7682060a6d85c7b) - **chore:** use `format` for error messages in strided build scripts [(#12178)](https://github.com/stdlib-js/stdlib/pull/12178) _(by Philipp Burckhardt)_
737738
- [`a615900`](https://github.com/stdlib-js/stdlib/commit/a615900caf19b4bb54ff0778986c44e6136494f7) - **feat:** update `math/base/tools` TypeScript declarations [(#12165)](https://github.com/stdlib-js/stdlib/pull/12165) _(by stdlib-bot)_
738739
- [`622d150`](https://github.com/stdlib-js/stdlib/commit/622d15033aa18a95fedfe4bfa1f66ac5799ef3f2) - **docs:** update related packages sections [(#12139)](https://github.com/stdlib-js/stdlib/pull/12139) _(by stdlib-bot)_

base/special/cceiln/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
164164
var x;
165165
var v;
166166

167-
x = 0.2 + 0.1; // => 0.30000000000000004
167+
x = 0.2 + 0.1; // returns 0.30000000000000004
168168
v = cceiln( new Complex128( x, x ), -16 );
169169

170170
t.strictEqual( real( v ), 0.3000000000000001, 'returns 0.3000000000000001 and not 0.3' );

base/special/cceiln/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
155155
var x;
156156
var v;
157157

158-
x = 0.2 + 0.1; // => 0.30000000000000004
158+
x = 0.2 + 0.1; // returns 0.30000000000000004
159159
v = cceiln( new Complex128( x, x ), -16 );
160160

161161
t.strictEqual( real( v ), 0.3000000000000001, 'returns 0.3000000000000001 and not 0.3' );

base/special/ceiln/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec
124124
});
125125

126126
tape( 'rounding a numeric value to a desired number of decimals can result in unexpected behavior', function test( t ) {
127-
var x = 0.2 + 0.1; // => 0.30000000000000004
127+
var x = 0.2 + 0.1; // returns 0.30000000000000004
128128
t.strictEqual( ceiln( x, -16 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' );
129129
t.end();
130130
});

base/special/ceiln/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec
115115
});
116116

117117
tape( 'rounding a numeric value to a desired number of decimals can result in unexpected behavior', opts, function test( t ) {
118-
var x = 0.2 + 0.1; // => 0.30000000000000004
118+
var x = 0.2 + 0.1; // returns 0.30000000000000004
119119
t.strictEqual( ceiln( x, -16 ), 0.3000000000000001, 'equals 0.3000000000000001 and not 0.3' );
120120
t.end();
121121
});

base/special/cfloorn/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
161161
var x;
162162
var v;
163163

164-
x = -0.2 - 0.1; // => -0.30000000000000004
164+
x = -0.2 - 0.1; // returns -0.30000000000000004
165165
v = cfloorn( new Complex128( x, x ), -16 );
166166
t.strictEqual( real( v ), -0.3000000000000001, 'returns -0.3000000000000001 and not -0.3' );
167167
t.strictEqual( imag( v ), -0.3000000000000001, 'returns -0.3000000000000001 and not -0.3' );

base/special/cfloorn/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
133133
var x;
134134
var v;
135135

136-
x = -0.2 - 0.1; // => -0.30000000000000004
136+
x = -0.2 - 0.1; // returns -0.30000000000000004
137137
v = cfloorn( new Complex128( x, x ), -16 );
138138
t.strictEqual( real( v ), -0.3000000000000001, 'returns -0.3000000000000001 and not -0.3' );
139139
t.strictEqual( imag( v ), -0.3000000000000001, 'returns -0.3000000000000001 and not -0.3' );

base/special/croundn/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
160160
var x;
161161
var v;
162162

163-
x = 0.2 + 0.1; // => 0.30000000000000004
163+
x = 0.2 + 0.1; // returns 0.30000000000000004
164164

165165
v = croundn( new Complex128( x, x ), -16 );
166166
t.strictEqual( real( v ), 0.3000000000000001, 'returns expected value' );

base/special/croundn/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ tape( 'rounding components to a desired number of decimals can result in unexpec
153153
var x;
154154
var v;
155155

156-
x = 0.2 + 0.1; // => 0.30000000000000004
156+
x = 0.2 + 0.1; // returns 0.30000000000000004
157157

158158
v = croundn( new Complex128( x, x ), -16 );
159159
t.strictEqual( real( v ), 0.3000000000000001, 'returns expected value' );

base/special/floorb/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ tape( 'the function supports rounding a numeric value to a desired number of dec
163163
tape( 'due to floating-point rounding error, rounding a numeric value can result in unexpected behavior', function test( t ) {
164164
var x;
165165

166-
x = -0.2 - 0.1; // => -0.30000000000000004
166+
x = -0.2 - 0.1; // returns -0.30000000000000004
167167
t.strictEqual( floorb( x, -16, 10 ), -0.3000000000000001, 'equals -0.3000000000000001 and not -0.3' );
168168

169169
x = -24.616838129811768;

0 commit comments

Comments
 (0)