Skip to content

Commit

Permalink
fix: fix incorrect zdscal descriptions
Browse files Browse the repository at this point in the history
---
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: na
  - 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: passed
  - 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: na
  - task: lint_typescript_tests
    status: na
  - task: lint_license_headers
    status: passed
---
  • Loading branch information
rreusser committed Jan 14, 2025
1 parent e5bbfb7 commit 25e95e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <stdint.h>

/**
* Scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
*
* @param N number of indexed elements
* @param da scalar constant
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal_f.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "stdlib/complex/float64/ctor.h"

/**
* Scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
*
* @param N number of indexed elements
* @param da scalar constant
Expand Down

0 comments on commit 25e95e0

Please sign in to comment.