Skip to content

Commit a14f05e

Browse files
authored
Merge pull request #16 from rex4539/typos
Fix typos
2 parents 5c963f2 + 06467b0 commit a14f05e

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Try to make sure your changes conform to the [Swift API Design Guidelines](https://swift.org/documentation/api-design-guidelines/). If you have 40 minutes you'd like to have well-spent, watch [Modern Swift API Design](https://developer.apple.com/videos/play/wwdc2019/415/) from WWDC 2019.
44

5-
Ready to send us a pull request? Please make sure your request is based on the a `develop` branch of the repository since `main` should only hold stable releases.
5+
Ready to send us a pull request? Please make sure your request is based on the `develop` branch of the repository since `main` should only hold stable releases.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can AudioKit and any of the other AudioKit libraries using Collections
3434
|--------------------|-------------------------------------------------------------|---------------|
3535
| SoundpipeAudioKit | API for using Soundpipe-powered Audio Units | Swift |
3636
| CSoundpipeAudioKit | Audio Units for the Soundpipe DSP | Objective-C++ |
37-
| Soundpipe | Low-level DSP for oscillators, physcial models, and effects | C |
37+
| Soundpipe | Low-level DSP for oscillators, physical models, and effects | C |
3838

3939
## Generators / Instruments
4040

Sources/Soundpipe/modules/foo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int sp_foo_destroy(sp_foo **p)
2323

2424
int sp_foo_init(sp_data *sp, sp_foo *p)
2525
{
26-
/* Initalize variables here. */
26+
/* Initialize variables here. */
2727
p->bar = 123;
2828
return SP_OK;
2929
}

Sources/Soundpipe/modules/ftbl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ int sp_gen_line(sp_data *sp, sp_ftbl *ft, const char *argstring)
162162
y2 = args->tbl[i + 1];
163163

164164
if(x2 < x1) {
165-
fprintf(stderr, "Error: x coordiates must be sequential!\n");
165+
fprintf(stderr, "Error: x coordinates must be sequential!\n");
166166
break;
167167
}
168168

@@ -215,7 +215,7 @@ int sp_gen_xline(sp_data *sp, sp_ftbl *ft, const char *argstring)
215215
y2 = args->tbl[i + 1];
216216

217217
if(x2 < x1) {
218-
fprintf(stderr, "Error: x coordiates must be sequential!\n");
218+
fprintf(stderr, "Error: x coordinates must be sequential!\n");
219219
break;
220220
}
221221

Sources/Soundpipe/modules/mincer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ int sp_mincer_compute(sp_data *sp, sp_mincer *p, SPFLOAT *in2, SPFLOAT *out)
157157

158158
/* window it */
159159
fwin[i] = insig * win[i];
160-
/* back windo, bwin */
160+
/* back window, bwin */
161161
post = (int) (pos - hsize*pitch);
162162
post *= 1;
163163
post += 0;

Sources/Soundpipe/modules/randi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ int sp_randi_init(sp_data *sp, sp_randi *p)
6464
p->num2 = sp_randGab;
6565
p->dfdmax = (p->num2 - p->num1) / SP_FT_MAXLEN * 1.0;
6666
break;
67-
default: /* old behaviour as developped by Gabriel */
67+
default: /* old behaviour as developed by Gabriel */
6868
p->num1 = p->num2 = 0.0;
6969
p->dfdmax = 0.0;
7070
}

Sources/Soundpipe/modules/thresh.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ int sp_thresh_destroy(sp_thresh **p)
1515

1616
int sp_thresh_init(sp_data *sp, sp_thresh *p)
1717
{
18-
/* Initalize variables here. */
18+
/* Initialize variables here. */
1919
p->init = 1;
2020
p->mode = 0;
2121
p->prev = 0;

Sources/Soundpipe/modules/wpkorg35.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* WPKorg35
33
*
4-
* This is a filter based off of an implemenation the Korg35 filter by Will
5-
* Pirke. It has been ported from the CCRMA chugin by the same name.
4+
* This is a filter based off of an implementation of the Korg35 filter
5+
* by Will Pirke. It has been ported from the CCRMA chugin by the same name.
66
*
77
*/
88

Sources/SoundpipeAudioKit/Effects/ChowningReverb.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import AudioKit
66
import AudioKitEX
77
import CAudioKitEX
88

9-
/// This is was built using the JC reverb implentation found in FAUST.
9+
/// This is was built using the JC reverb implementation found in FAUST.
1010
/// According to the source code, the specifications for this implementation were
1111
/// found on an old SAIL DART backup tape.
1212
///

Sources/SoundpipeAudioKit/Effects/FormantFilter.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ public class FormantFilter: Node {
4848
/// Specification details for decayDuration
4949
public static let decayDurationDef = NodeParameterDef(
5050
identifier: "decayDuration",
51-
name: "Impulse reponse decay time (Seconds)",
51+
name: "Impulse response decay time (Seconds)",
5252
address: akGetParameterAddress("FormantFilterParameterDecayDuration"),
5353
defaultValue: 0.04,
5454
range: 0.0 ... 0.1,
5555
unit: .seconds)
5656

57-
/// Impulse reponse decay time (in seconds)
57+
/// Impulse response decay time (in seconds)
5858
@Parameter(decayDurationDef) public var decayDuration: AUValue
5959

6060
// MARK: - Initialization
@@ -65,7 +65,7 @@ public class FormantFilter: Node {
6565
/// - input: Input node to process
6666
/// - centerFrequency: Center frequency.
6767
/// - attackDuration: Impulse response attack time (in seconds).
68-
/// - decayDuration: Impulse reponse decay time (in seconds)
68+
/// - decayDuration: Impulse response decay time (in seconds)
6969
///
7070
public init(
7171
_ input: Node,

0 commit comments

Comments
 (0)