Skip to content

Commit 05e83e1

Browse files
committed
fix: resolve typo in include guard
--- 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 366925e commit 05e83e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/dscal/include/stdlib/blas/base/dscal_cblas.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_dscal`.
2121
*/
22-
#ifndef DSCAL_CLBAS_H
22+
#ifndef DSCAL_CBLAS_H
2323
#define DSCAL_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"

lib/node_modules/@stdlib/blas/base/idamax/include/stdlib/blas/base/idamax_cblas.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_idamax`.
2121
*/
22-
#ifndef IDAMAX_CLBAS_H
22+
#ifndef IDAMAX_CBLAS_H
2323
#define IDAMAX_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"

lib/node_modules/@stdlib/blas/base/isamax/include/stdlib/blas/base/isamax_cblas.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Header file containing function declarations for the C interface to the CBLAS Level 1 routine `cblas_ISAMAX`.
2121
*/
22-
#ifndef ISAMAX_CLBAS_H
22+
#ifndef ISAMAX_CBLAS_H
2323
#define ISAMAX_CBLAS_H
2424

2525
#include "stdlib/blas/base/shared.h"

0 commit comments

Comments
 (0)