summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/ardour/export_formats.h4
-rw-r--r--libs/ardour/plugin_insert.cc2
2 files changed, 3 insertions, 3 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;
}