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
docs: align test descriptions with canonical complex-number wording
Propagates fixes from b0713ea ("docs: update descriptions to be
consistent with elsewhere in project") and a3a5677 ("docs: follow-up
fixes") to test descriptions that still use the reverse word order
"complex {single,double}-precision floating-point". Project canonical
wording is "{single,double}-precision complex floating-point", which
matches the JSDoc in each package's `lib/main.js`.
Affected packages:
- `complex/float32/base/assert/is-almost-equal`
- `complex/float32/base/assert/is-almost-same-value`
- `complex/float64/base/assert/is-almost-equal`
- `complex/float64/base/assert/is-almost-same-value`
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float32/base/assert/is-almost-equal/test/test.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ tape( 'the function returns `false` if provided `NaN` as either real or imaginar
55
55
t.end();
56
56
});
57
57
58
-
tape('the function returns `true` if provided two complex single-precision floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
58
+
tape('the function returns `true` if provided two single-precision complex floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
59
59
varz1;
60
60
varz2;
61
61
@@ -77,7 +77,7 @@ tape( 'the function returns `true` if provided two complex single-precision floa
77
77
t.end();
78
78
});
79
79
80
-
tape('the function returns `true` if provided two complex single-precision floating-point numbers which are approximately equal within a specified number of ULPs',functiontest(t){
80
+
tape('the function returns `true` if provided two single-precision complex floating-point numbers which are approximately equal within a specified number of ULPs',functiontest(t){
81
81
varz1;
82
82
varz2;
83
83
@@ -93,7 +93,7 @@ tape( 'the function returns `true` if provided two complex single-precision floa
93
93
t.end();
94
94
});
95
95
96
-
tape('the function returns `false` if provided two complex single-precision floating-point numbers which are not approximately equal within a specified number of ULPs',functiontest(t){
96
+
tape('the function returns `false` if provided two single-precision complex floating-point numbers which are not approximately equal within a specified number of ULPs',functiontest(t){
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float32/base/assert/is-almost-same-value/test/test.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ tape( 'the function treats `NaNs` as the same value', function test( t ) {
55
55
t.end();
56
56
});
57
57
58
-
tape('the function returns `true` if provided two complex single-precision floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
58
+
tape('the function returns `true` if provided two single-precision complex floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
59
59
varz1;
60
60
varz2;
61
61
@@ -77,7 +77,7 @@ tape( 'the function returns `true` if provided two complex single-precision floa
77
77
t.end();
78
78
});
79
79
80
-
tape('the function returns `true` if provided two complex single-precision floating-point numbers which are approximately the same value within a specified number of ULPs',functiontest(t){
80
+
tape('the function returns `true` if provided two single-precision complex floating-point numbers which are approximately the same value within a specified number of ULPs',functiontest(t){
81
81
varz1;
82
82
varz2;
83
83
@@ -93,7 +93,7 @@ tape( 'the function returns `true` if provided two complex single-precision floa
93
93
t.end();
94
94
});
95
95
96
-
tape('the function returns `false` if provided two complex single-precision floating-point numbers which are not approximately the same value within a specified number of ULPs',functiontest(t){
96
+
tape('the function returns `false` if provided two single-precision complex floating-point numbers which are not approximately the same value within a specified number of ULPs',functiontest(t){
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float64/base/assert/is-almost-equal/test/test.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ tape( 'the function returns `false` if provided `NaN` as either real or imaginar
55
55
t.end();
56
56
});
57
57
58
-
tape('the function returns `true` if provided two complex double-precision floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
58
+
tape('the function returns `true` if provided two double-precision complex floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
59
59
varz1;
60
60
varz2;
61
61
@@ -77,7 +77,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
77
77
t.end();
78
78
});
79
79
80
-
tape('the function returns `true` if provided two complex double-precision floating-point numbers which are approximately equal within a specified number of ULPs',functiontest(t){
80
+
tape('the function returns `true` if provided two double-precision complex floating-point numbers which are approximately equal within a specified number of ULPs',functiontest(t){
81
81
varz1;
82
82
varz2;
83
83
@@ -93,7 +93,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
93
93
t.end();
94
94
});
95
95
96
-
tape('the function returns `false` if provided two complex double-precision floating-point numbers which are not approximately equal within a specified number of ULPs',functiontest(t){
96
+
tape('the function returns `false` if provided two double-precision complex floating-point numbers which are not approximately equal within a specified number of ULPs',functiontest(t){
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/complex/float64/base/assert/is-almost-same-value/test/test.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ tape( 'the function treats `NaNs` as the same value', function test( t ) {
55
55
t.end();
56
56
});
57
57
58
-
tape('the function returns `true` if provided two complex double-precision floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
58
+
tape('the function returns `true` if provided two double-precision complex floating-point numbers which are the same value irrespective of the specified number of ULPs',functiontest(t){
59
59
varz1;
60
60
varz2;
61
61
@@ -77,7 +77,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
77
77
t.end();
78
78
});
79
79
80
-
tape('the function returns `true` if provided two complex double-precision floating-point numbers which are approximately the same value within a specified number of ULPs',functiontest(t){
80
+
tape('the function returns `true` if provided two double-precision complex floating-point numbers which are approximately the same value within a specified number of ULPs',functiontest(t){
81
81
varz1;
82
82
varz2;
83
83
@@ -93,7 +93,7 @@ tape( 'the function returns `true` if provided two complex double-precision floa
93
93
t.end();
94
94
});
95
95
96
-
tape('the function returns `false` if provided two complex double-precision floating-point numbers which are not approximately the same value within a specified number of ULPs',functiontest(t){
96
+
tape('the function returns `false` if provided two double-precision complex floating-point numbers which are not approximately the same value within a specified number of ULPs',functiontest(t){
0 commit comments