Skip to content

Commit e7f4e77

Browse files
committed
Run codespell
1 parent 343a573 commit e7f4e77

35 files changed

+63
-63
lines changed

Source/CoreServices.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class PopupManager;
3737

3838
namespace CoreServices
3939
{
40-
/** Issues a signal chain update; this should be called whenver a plugin's
40+
/** Issues a signal chain update; this should be called whenever a plugin's
4141
* are changed in a way that would affect downstream plugins.
4242
*
4343
* For example, if a plugin adds a new EventChannel, updateSignalChain() must

Source/Processors/DataThreads/DataThread.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ void DataThread::run()
193193
{
194194
const MessageManagerLock mmLock (Thread::getCurrentThread());
195195

196-
LOGE ("Aquisition error...stopping thread.");
196+
LOGE ("Acquisition error...stopping thread.");
197197
signalThreadShouldExit();
198-
LOGE ("Notifying source node to stop acqusition.");
198+
LOGE ("Notifying source node to stop acquisition.");
199199
sn->connectionLost();
200200
}
201201
}

Source/Processors/DataThreads/DataThread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class PLUGIN_API DataThread : public Thread
223223
/** Adds a parameter that allows the user to select a TTL Line
224224
* @param maxAvailableLines The number of TTL lines available for selection
225225
* @param syncMode Set to true if the ttl line will be used for synchronization
226-
* @param canSelectNone Set to true if the user can select no TTL line (cant be used with syncMode = true)
226+
* @param canSelectNone Set to true if the user can select no TTL line (can't be used with syncMode = true)
227227
*/
228228
void addTtlLineParameter (Parameter::ParameterScope scope,
229229
const String& name,

Source/Processors/Dsp/Documentation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ code....until now."_
4545
----
4646
Building on the work of cherished luminaries such as Sophocles Orfanidis, Andreas Antoniou, Martin Holters, and Udo Zolzer, this library harnesses the power of C++ templates to solve a useful problem in digital signal processing: the realization of multichannel IIR filters of arbitrary order and prescribed specifications with various properties such as Butterworth, Chebyshev, Elliptic, and Optimum-L (Legendre) responses. The library is provided under the MIT license and is therefore fully compatible with proprietary usage.
4747
48-
Classes are designed as independent re-usable building blocks. Use some or all of the provided features, or extend the functionality by writing your own objects that plug into the robust framework. Only the code that you need will get linked into your application. Here's a list of features:
48+
Classes are designed as independent reusable building blocks. Use some or all of the provided features, or extend the functionality by writing your own objects that plug into the robust framework. Only the code that you need will get linked into your application. Here's a list of features:
4949
5050
* Exclusive focus on IIR filters instead of boring FIR filters
5151
* Complete implementation of all "RBJ Biquad" Cookbook filter formulas
@@ -376,7 +376,7 @@ void UsageExamples()
376376
}
377377

378378
// Use the simple filter API to create a Chebyshev Band Stop of order 3
379-
// and 1dB ripple in the passband. The simle API has a smaller
379+
// and 1dB ripple in the passband. The simple API has a smaller
380380
// footprint, but no introspection or smoothing.
381381
{
382382
// Note we use the raw filter instead of the one

Source/Processors/Dsp/PoleFilter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ BandPassTransform::BandPassTransform (double fc,
133133
LayoutBase const& analog)
134134
{
135135
// handle degenerate cases efficiently
136-
// THIS DOESNT WORK because the cascade states won't match
136+
// THIS DOESN'T WORK because the cascade states won't match
137137
#if 0
138138
const double fw_2 = fw / 2;
139139
if (fc - fw_2 < 0)

Source/Processors/Dsp/Utilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ double BrentMinimize (
670670
}
671671
}
672672
goto loop; // Yes, the dreaded goto statement. But the code
673-
// here is faithful to Brent's orginal pseudocode.
673+
// here is faithful to Brent's original pseudocode.
674674
}
675675
return fx;
676676
}

Source/Processors/Editors/GenericEditor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ class PLUGIN_API GenericEditor : public AudioProcessorEditor
314314
/** Adds a selected stream editor for a parameter of a given name. */
315315
void addSelectedStreamParameterEditor (Parameter::ParameterScope scope, const String& name, int xPos, int yPos);
316316

317-
/** Adds a time editor for a paramater of a given name. */
317+
/** Adds a time editor for a parameter of a given name. */
318318
void addTimeParameterEditor (Parameter::ParameterScope scope, const String& name, int xPos, int yPos);
319319

320320
/** Adds a ttl line editor for a parameter of a given name. */

Source/Processors/Editors/VisualizerEditor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class PLUGIN_API VisualizerEditor : public GenericEditor, public DataWindow::Lis
9090

9191
// ------------------------------------------------------------
9292
// VIRTUAL METHODS
93-
// (can optionally be overriden by sub-classes)
93+
// (can optionally be overridden by sub-classes)
9494
// ------------------------------------------------------------
9595

9696
/** Use this method to save custom editor parameters */

Source/Processors/FileReader/FileSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class PLUGIN_API FileSource
8989

9090
// ------------------------------------------------------------
9191
// VIRTUAL METHODS
92-
// (can optionally be overriden by sub-classes)
92+
// (can optionally be overridden by sub-classes)
9393
// ------------------------------------------------------------
9494

9595
/** Return false if file is not able to be opened */

Source/Processors/FileReader/ScrubberInterface.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void FullTimeline::paint (Graphics& g)
6868
{
6969
float timelinePos = (sampleNumber - startSample) / float (totalSamples) * getWidth();
7070

71-
//if timelinePos is already in eventMap, skip overlaying a new event to avoid bogging down the GUI whle scrubbing
71+
//if timelinePos is already in eventMap, skip overlaying a new event to avoid bogging down the GUI while scrubbing
7272
if (eventMap.find (timelinePos) != eventMap.end())
7373
continue;
7474
eventMap[timelinePos] = true;
@@ -399,7 +399,7 @@ ScrubberInterface::ScrubberInterface (FileReader* fileReader_)
399399
fullTimeline->setBounds (padding, 76, scrubInterfaceWidth - 2 * padding, 20);
400400
addAndMakeVisible (fullTimeline.get());
401401

402-
/* Depracate playback button
402+
/* Deprecate playback button
403403
int buttonSize = 24;
404404
playbackButton = std::make_unique<PlaybackButton> (fileReader);
405405
playbackButton->setState (true);
@@ -446,7 +446,7 @@ void ScrubberInterface::paintOverChildren (Graphics& g)
446446

447447
void ScrubberInterface::buttonClicked (Button* button)
448448
{
449-
//playbackButton->setState (! playbackButton->getState()); //depracated
449+
//playbackButton->setState (! playbackButton->getState()); //deprecated
450450
updatePlaybackTimes();
451451
fileReader->togglePlayback();
452452
}

0 commit comments

Comments
 (0)