Fix a documentation error.

This commit is contained in:
David Reid
2025-01-21 13:04:24 +10:00
parent 3fb7027682
commit 1fe39f949a
+1 -1
View File
@@ -3141,7 +3141,7 @@ Biquad filtering is achieved with the `ma_biquad` API. Example:
```c
ma_biquad_config config = ma_biquad_config_init(ma_format_f32, channels, b0, b1, b2, a0, a1, a2);
ma_result result = ma_biquad_init(&config, &biquad);
ma_result result = ma_biquad_init(&config, NULL, &biquad);
if (result != MA_SUCCESS) {
// Error.
}