13
0

spelling error fixes (notably "overriden" => "overidden") from IOhannes m zmölnig

This commit is contained in:
Paul Davis 2015-09-11 09:23:43 -04:00
parent 6048d2cd23
commit ec06f2c49f
7 changed files with 8 additions and 8 deletions

View 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; }

View 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;
}

View 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\

View 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.
*

View 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
//!

View 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;

View 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