aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/alcomplex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/alcomplex.cpp b/common/alcomplex.cpp
index f1d13551..458ac99e 100644
--- a/common/alcomplex.cpp
+++ b/common/alcomplex.cpp
@@ -26,7 +26,7 @@ void complex_fft(const al::span<std::complex<double>> buffer, const double sign)
std::swap(buffer[i], buffer[j]);
}
- /* Iterative form of Danielson–Lanczos lemma */
+ /* Iterative form of Danielson-Lanczos lemma */
size_t step{2u};
for(size_t i{1u};i < fftsize;i<<=1, step<<=1)
{