Skip to content

Commit 43ddb5f

Browse files
committed
Auto-generated commit
1 parent b8608c7 commit 43ddb5f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`b228bf3`](https://github.com/stdlib-js/stdlib/commit/b228bf31d96eacac782648edf8c29141d094a59b) - **docs:** update comments _(by Athan Reines)_
3738
- [`3b08499`](https://github.com/stdlib-js/stdlib/commit/3b08499dcdae21f946e61da757c0c21da2e8f9ed) - **docs:** change package naming and examples for `complex/float32/base/mul` [(#7167)](https://github.com/stdlib-js/stdlib/pull/7167) _(by Shabareesh Shetty)_
3839
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_
3940
- [`89ecfe0`](https://github.com/stdlib-js/stdlib/commit/89ecfe0212aef0448017f8e404a3862fda851170) - **refactor:** update paths _(by Gururaj Gurram)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ var mul = require( '@stdlib/complex-float32-base-mul' );
166166
var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
167167
var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
168168

169-
// Perform multiplication on each element of arrays:
169+
// Perform element-wise multiplication:
170170
logEachMap( '(%s) * (%s) = %s', z1, z2, mul );
171171
```
172172

examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ var mul = require( './../lib' );
2727
var z1 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
2828
var z2 = new Complex64Array( discreteUniform( 200, -50, 50 ) );
2929

30-
// Scale each by a scalar constant:
30+
// Perform element-wise multiplication:
3131
logEachMap( '(%s) * (%s) = %s', z1, z2, mul );

0 commit comments

Comments
 (0)