Skip to content

Commit 2dcaa44

Browse files
committed
docs: fix comment style
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e848427 commit 2dcaa44

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/fft/base/fftpack/lib

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/fft/base/fftpack/lib/radf2.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ function radf2( M, L, cc, sc, oc, out, so, oo, twiddles, st, ot ) { // eslint-di
250250
var i;
251251
var k;
252252

253-
/**
253+
/*
254254
* First, perform the core butterfly for each sub-sequence being transformed.
255255
*
256256
* In the following loop, we handle harmonic `n = 0` for every transform. As described for `iptr`, the input array is interpreted as a three-dimensional array, containing two "rows" per sub-sequence.
@@ -279,7 +279,7 @@ function radf2( M, L, cc, sc, oc, out, so, oo, twiddles, st, ot ) { // eslint-di
279279
if ( M < 2 ) {
280280
return;
281281
}
282-
/**
282+
/*
283283
* Next, apply the general case where we need to loop through the non-trivial harmonics.
284284
*
285285
* For each harmonic `n = 1, ..., M/2-1`, we need to
@@ -335,7 +335,7 @@ function radf2( M, L, cc, sc, oc, out, so, oo, twiddles, st, ot ) { // eslint-di
335335
return;
336336
}
337337
}
338-
/**
338+
/*
339339
* Lastly, handle the Nyquist frequency where `i = M-1` (i.e., the last element of each sub-sequence).
340340
*
341341
* When `M` is even, the Nyquist index is `i = M/2`. In this stage, we've stored that element at the end of each sub-sequence (i.e., `i = M-1` in the packed layout).

0 commit comments

Comments
 (0)