Skip to content

Commit 030b955

Browse files
RainRatmackron
authored andcommitted
fix typos
1 parent c6d8b59 commit 030b955

14 files changed

+217
-217
lines changed

CHANGES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ v0.11.7 - 2022-02-06
183183

184184
v0.11.6 - 2022-01-22
185185
====================
186-
* WASAPI: Fix a bug where the device is not stopped when an error occurrs when writing to a playback device.
186+
* WASAPI: Fix a bug where the device is not stopped when an error occurs when writing to a playback device.
187187
* PulseAudio: Fix a rare crash due to a division by zero.
188188
* The node graph can now be used as a node. This allows node graphs to be connected to other node graphs.
189189
* Fix a crash with high-pass and band-pass filters.
@@ -477,7 +477,7 @@ v0.10.26 - 2020-11-24
477477

478478
v0.10.25 - 2020-11-15
479479
- PulseAudio: Fix a bug where the stop callback isn't fired.
480-
- WebAudio: Fix an error that occurs when Emscripten increases the size of it's heap.
480+
- WebAudio: Fix an error that occurs when Emscripten increases the size of its heap.
481481
- Custom Backends: Change the onContextInit and onDeviceInit callbacks to take a parameter which is a pointer to the config that was
482482
passed into ma_context_init() and ma_device_init(). This replaces the deviceType parameter of onDeviceInit.
483483
- Fix compilation warnings on older versions of GCC.

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ significant work without talking to me first. If I don't like it, it won't be me
2121
[Discord](https://discord.gg/9vpqbjU) and [Twitter](https://twitter.com/mackron).
2222

2323
Always base your pull request branch on the "dev" branch. The master branch contains the latest release, which
24-
means your pull request may not be including the lastest in-development changes which may result in unnecessary
24+
means your pull request may not be including the latest in-development changes which may result in unnecessary
2525
conflicts.
2626

2727
I need to review your pull requests before merging. If your pull request is non-trivial, try to break it up into
@@ -63,7 +63,7 @@ not contribute to this project.
6363

6464
Predictable Questions
6565
---------------------
66-
### "Would you consider splitting out [some section of code] into it's own file?"
66+
### "Would you consider splitting out [some section of code] into its own file?"
6767
No, the idea is to keep everything in one place. It would be nice in specific cases to split out specific sections
6868
of the code, such as the resampler, for example. However, this will completely violate one of the major goals of the
6969
project - to have a complete audio library contained within a single file.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Documentation
180180
Online documentation can be found here: https://miniaud.io/docs/
181181

182182
Documentation can also be found at the top of [miniaudio.h](https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h)
183-
which is always the most up-to-date and authoritive source of information on how to use miniaudio. All other
183+
which is always the most up-to-date and authoritative source of information on how to use miniaudio. All other
184184
documentation is generated from this in-code documentation.
185185

186186

examples/custom_backend.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ static ma_result ma_context_get_device_info__sdl(ma_context* pContext, ma_device
261261
of the device's _actual_ ideal format.
262262
263263
Note: With Emscripten, it looks like non-zero values need to be specified for desiredSpec. Whatever is specified in
264-
desiredSpec will be used by SDL since it uses it just does it's own format conversion internally. Therefore, from what
264+
desiredSpec will be used by SDL since it uses it just does its own format conversion internally. Therefore, from what
265265
I can tell, there's no real way to know the device's actual format which means I'm just going to fall back to the full
266266
range of channels and sample rates on Emscripten builds.
267267
*/

examples/simple_enumeration.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Demonstrates how to enumerate over devices.
33
4-
Device enumaration requires a `ma_context` object which is initialized with `ma_context_init()`. Conceptually, the
4+
Device enumeration requires a `ma_context` object which is initialized with `ma_context_init()`. Conceptually, the
55
context sits above a device. You can have many devices to one context.
66
77
If you use device enumeration, you should explicitly specify the same context you used for enumeration in the call to

examples/simple_mixing.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Demonstrates one way to load multiple files and play them all back at the same t
44
When mixing multiple sounds together, you should not create multiple devices. Instead you should create only a single
55
device and then mix your sounds together which you can do by simply summing their samples together. The simplest way to
66
do this is to use floating point samples and use miniaudio's built-in clipper to handling clipping for you. (Clipping
7-
is when sample are clampled to their minimum and maximum range, which for floating point is -1..1.)
7+
is when sample are clamped to their minimum and maximum range, which for floating point is -1..1.)
88
99
```
1010
Usage: simple_mixing [input file 0] [input file 1] ... [input file n]

0 commit comments

Comments
 (0)