Skip to content

Commit 612180d

Browse files
committed
chore: clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent c47b2ba commit 612180d

4 files changed

Lines changed: 0 additions & 4 deletions

File tree

lib/node_modules/@stdlib/math/base/special/cexp/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import { Complex128 } from '@stdlib/types/complex';
3939
*
4040
* var v = cexp( new Complex128( 1.0, 0.0 ) );
4141
* // returns <Complex128>[ ~2.718, 0.0 ]
42-
*
4342
*/
4443
declare function cexp( z: Complex128 ): Complex128;
4544

lib/node_modules/@stdlib/math/base/special/cexp/lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*
3030
* var v = cexp( new Complex128( 0.0, 0.0 ) );
3131
* // returns <Complex128>[ 1.0, 0.0 ]
32-
*
3332
*/
3433

3534
// MODULES //

lib/node_modules/@stdlib/math/base/special/cexp/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ var imag = require( '@stdlib/complex/float64/imag' );
5353
*
5454
* var v = cexp( new Complex128( 1.0, 0.0 ) );
5555
* // returns <Complex128>[ ~2.718, 0.0 ]
56-
*
5756
*/
5857
function cexp( z ) {
5958
var out;

lib/node_modules/@stdlib/math/base/special/cexp/lib/native.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var addon = require( './../src/addon.node' );
4646
*
4747
* var v = cexp( new Complex128( 1.0, 0.0 ) );
4848
* // returns <Complex128>[ ~2.718, 0.0 ]
49-
*
5049
*/
5150
function cexp( z ) {
5251
var v = addon( z );

0 commit comments

Comments
 (0)