Fix a typo.

This commit is contained in:
David Reid
2020-02-22 21:31:03 +10:00
parent e51a732126
commit 969679113c
+1 -1
View File
@@ -1073,7 +1073,7 @@ Noise
miniaudio supports generation of white noise via the `ma_noise` API. Example:
```c
ma_noise_config config = ma_noise_config_init(FORMAT, CHANNELS, ma_noise_type_white, SEED, aplitude);
ma_noise_config config = ma_noise_config_init(FORMAT, CHANNELS, ma_noise_type_white, SEED, amplitude);
ma_noise noise;
ma_result result = ma_noise_init(&config, &noise);