Skip to content

Commit a90c07a

Browse files
committed
Update descriptions
1 parent 075c739 commit a90c07a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/types/complex128/test

lib/node_modules/@stdlib/types/complex128/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ tape( 'the constructor prototype has a read-only `byteLength` property', functio
105105
}
106106
});
107107

108-
tape( 'the constructor returns an instance having a `real` property for getting the real component', function test( t ) {
108+
tape( 'the constructor returns an instance having a property for getting the real component', function test( t ) {
109109
var z = new Complex128( 5.0, 3.0 );
110110
t.strictEqual( z.re, 5.0, 'returns expected value' );
111111
t.end();
@@ -121,7 +121,7 @@ tape( 'the constructor returns an instance which throws an error when attempting
121121
}
122122
});
123123

124-
tape( 'the constructor returns an instance having an `imag` property for getting the imaginary component', function test( t ) {
124+
tape( 'the constructor returns an instance having a property for getting the imaginary component', function test( t ) {
125125
var z = new Complex128( 5.0, 3.0 );
126126
t.strictEqual( z.im, 3.0, 'returns expected value' );
127127
t.end();

0 commit comments

Comments
 (0)