summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/about.cc2
-rw-r--r--libs/rubberband/src/FFT.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc
index a826510d5f..9b4f1477d6 100644
--- a/gtk2_ardour/about.cc
+++ b/gtk2_ardour/about.cc
@@ -202,7 +202,7 @@ static const char* translators[] = {
static const char* gpl = X_("\n\
Ardour comes with NO WARRANTY. It is free software, and you are welcome to redistribute it\n\
-under the terms of the GNU Public License, shown below.\n\
+under the terms of the GNU General Public License, shown below.\n\
\n\
GNU GENERAL PUBLIC LICENSE\n\
Version 2, June 1991\n\
diff --git a/libs/rubberband/src/FFT.cpp b/libs/rubberband/src/FFT.cpp
index 077c2c57a4..f04f6506d6 100644
--- a/libs/rubberband/src/FFT.cpp
+++ b/libs/rubberband/src/FFT.cpp
@@ -1201,7 +1201,7 @@ FFT::FFT(int size, int debugLevel)
switch (m_method) {
case 0:
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else
@@ -1218,7 +1218,7 @@ FFT::FFT(int size, int debugLevel)
}
d = new FFTs::D_FFTW(size);
#else
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else
@@ -1236,7 +1236,7 @@ FFT::FFT(int size, int debugLevel)
}
d = new FFTs::D_KISSFFT(size);
#else
- std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implemention not available" << std::endl;
+ std::cerr << "FFT::FFT(" << size << "): WARNING: Selected implementation not available" << std::endl;
#ifdef USE_BUILTIN_FFT
d = new FFTs::D_Cross(size);
#else