Some spelling mistake fixes from Debian.
authorCarl Hetherington <carl@carlh.net>
Tue, 26 Jun 2012 01:40:27 +0000 (01:40 +0000)
committerCarl Hetherington <carl@carlh.net>
Tue, 26 Jun 2012 01:40:27 +0000 (01:40 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@12936 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/about.cc
libs/rubberband/src/FFT.cpp

index a826510d5fcb29fa9bc68d4ed44200346284307f..9b4f1477d6882cf60e8ddf535003b45242bade76 100644 (file)
@@ -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\
index 077c2c57a4cf3a2b02618f79121305eb01c2b70d..f04f6506d6992645aa06406a40a9d15f89eeff3c 100644 (file)
@@ -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