summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/ardour/export_formats.h4
-rw-r--r--libs/ardour/plugin_insert.cc2
-rw-r--r--libs/ardouralsautil/request_device.c2
-rw-r--r--libs/audiographer/audiographer/sink.h2
-rw-r--r--libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp2
-rw-r--r--libs/canvas/canvas/container.h2
-rw-r--r--tools/bug_tool/ClientCookie/_ClientCookie.py2
7 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/ardour/export_formats.h b/libs/ardour/ardour/export_formats.h
index 076bb90d3d..4c9c205725 100644
--- a/libs/ardour/ardour/export_formats.h
+++ b/libs/ardour/ardour/export_formats.h
@@ -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; }
diff --git a/libs/ardour/plugin_insert.cc b/libs/ardour/plugin_insert.cc
index e09cce8f5a..855c3a610c 100644
--- a/libs/ardour/plugin_insert.cc
+++ b/libs/ardour/plugin_insert.cc
@@ -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;
}
diff --git a/libs/ardouralsautil/request_device.c b/libs/ardouralsautil/request_device.c
index 4ba80ec624..3fff33bf13 100644
--- a/libs/ardouralsautil/request_device.c
+++ b/libs/ardouralsautil/request_device.c
@@ -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\
diff --git a/libs/audiographer/audiographer/sink.h b/libs/audiographer/audiographer/sink.h
index e4248e8c33..b1e5605206 100644
--- a/libs/audiographer/audiographer/sink.h
+++ b/libs/audiographer/audiographer/sink.h
@@ -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.
*
diff --git a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp
index 138810f55f..ecd1b05698 100644
--- a/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp
+++ b/libs/backends/wavesaudio/wavesapi/devicemanager/WCMRAudioDeviceManager.cpp
@@ -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
//!
diff --git a/libs/canvas/canvas/container.h b/libs/canvas/canvas/container.h
index 59d93458e6..d8a4a316ae 100644
--- a/libs/canvas/canvas/container.h
+++ b/libs/canvas/canvas/container.h
@@ -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;
diff --git a/tools/bug_tool/ClientCookie/_ClientCookie.py b/tools/bug_tool/ClientCookie/_ClientCookie.py
index 307fa22afb..abcb2c86f1 100644
--- a/tools/bug_tool/ClientCookie/_ClientCookie.py
+++ b/tools/bug_tool/ClientCookie/_ClientCookie.py
@@ -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