spelling error fixes (notably "overriden" => "overidden") from IOhannes m zmölnig
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 11 Sep 2015 13:23:43 +0000 (09:23 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 11 Sep 2015 13:23:43 +0000 (09:23 -0400)
libs/ardour/ardour/export_formats.h
libs/ardour/plugin_insert.cc
libs/ardouralsautil/request_device.c
libs/audiographer/audiographer/sink.h
libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp
libs/canvas/canvas/container.h
tools/bug_tool/ClientCookie/_ClientCookie.py

index 076bb90d3dfec027532e626b97d374b1d74bb9fe..4c9c2057256da84ff586088e2d8564205bc259c9 100644 (file)
@@ -54,13 +54,13 @@ class LIBARDOUR_API ExportFormat : public ExportFormatBase, public ExportFormatB
        bool has_sample_format ();
        bool sample_format_is_compatible (SampleFormat format) const;
 
-       /* If the format has a specific sample format, this function should be overriden
+       /* If the format has a specific sample format, this function should be overridden
         * if the format has a selectable sample format, do not override this!
         */
 
        virtual SampleFormat get_explicit_sample_format () const { return SF_None; }
 
-       /* If the above is not overriden, this one should be */
+       /* If the above is not overridden, this one should be */
 
        virtual ExportFormat::SampleFormat default_sample_format () const { return SF_None; }
 
index e09cce8f5a973c09dcc0861af6c0c1bc7ea33774..855c3a610cc8f55579ebae0cc405fcfd9b36be76 100644 (file)
@@ -523,7 +523,7 @@ PluginInsert::set_parameter (Evoral::Parameter param, float val)
        if (ac) {
                ac->set_value(val);
        } else {
-               warning << "set_parameter called for nonexistant parameter "
+               warning << "set_parameter called for nonexistent parameter "
                        << EventTypeMap::instance().to_symbol(param) << endmsg;
        }
 
index 4ba80ec624229320070f49cda099d1ec23dc100c..3fff33bf137b64c7b6c29ccb2996ab296a74dca7 100644 (file)
@@ -86,7 +86,7 @@ release the device.\n\
 \n\
 " ARD_PROG_NAME " by default announces itself as \"" ARD_APPL_NAME "\"\n\
 and uses the maximum possible priority for requesting the device.\n\
-These settings can be overriden using the -n and -p options respectively.\n\
+These settings can be overridden using the -n and -p options respectively.\n\
 \n\
 If a PID is given the tool will watch the process and if that is not running\n\
 release the device and exit.  Otherwise " ARD_PROG_NAME " runs until\n\
index e4248e8c33be80f605cd0d5d2cf84c3ed9123229..b1e5605206d98f40e5e89841447db85889ddfa88 100644 (file)
@@ -27,7 +27,7 @@ class /*LIBAUDIOGRAPHER_API*/ Sink  {
        /** Process given data
          * Data may be modified, so in place processing is allowed.
          * The default implementation calls the non-modifying version,
-         * so this function does not need to be overriden.
+         * so this function does not need to be overridden.
          * However, if the sink can do in-place processing,
          * overriding this is highly recommended.
          *
index 138810f55f0228fdcdd416683540d5f9a49d0bf0..ecd1b05698571d45457b3d1178278a2405a5448f 100644 (file)
@@ -213,7 +213,7 @@ int WCMRAudioDevice::CurrentBufferSize ()
 //
 //! Device's block size we use for holding the audio samples.
 //! Usually this is equal to the buffer size, but in some cases the buffer size holds additional
-//!   data other then the audio buffers, like frames info in SG, so it can be overriden
+//!   data other then the audio buffers, like frames info in SG, so it can be overridden
 //!
 //! \param none
 //! 
index 59d93458e6d0bd0c8462572db77da489fa2926d1..d8a4a316ae6e7c0cea6e4ad829d1544c6a6db6d9 100644 (file)
@@ -45,7 +45,7 @@ public:
 
        /** The compute_bounding_box() method is likely to be identical
         * in all containers (the union of the children's bounding boxes).
-        * It can be overriden as necessary.
+        * It can be overridden as necessary.
         */
        void compute_bounding_box () const;
 
index 307fa22afbb13c39f95e295ce622bc55d4b350be..abcb2c86f10a31e72c0bb40fc4bb63c3e45f1893 100644 (file)
@@ -534,7 +534,7 @@ class DefaultCookiePolicy(CookiePolicy):
     Both RFC 2965 and Netscape cookies are covered.
 
     The easiest way to provide your own policy is to override this class and
-    call its methods in your overriden implementations before adding your own
+    call its methods in your overridden implementations before adding your own
     additional checks.
 
     import ClientCookie