From dc530874462d5d929ecdf087d74a1301fc863981 Mon Sep 17 00:00:00 2001 From: 0/0 Date: Fri, 29 Jul 2022 04:02:00 -0600 Subject: [PATCH] Events: Fix typo in docs for VoiceData (#142) --- src/events/context/data/voice.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/context/data/voice.rs b/src/events/context/data/voice.rs index b9929b935..96a0a14b9 100644 --- a/src/events/context/data/voice.rs +++ b/src/events/context/data/voice.rs @@ -6,7 +6,7 @@ use super::*; /// `payload_offset` contains the true payload location within the raw packet's `payload()`, /// if extensions or raw packet data are required. /// -/// Valid audio data (`Some(audio)` where `audio.len >= 0`) contains up to 20ms of 16-bit mono PCM audio +/// Valid audio data (`Some(audio)` where `audio.len >= 0`) contains up to 20ms of 16-bit stereo PCM audio /// at 48kHz, using native endianness. Songbird will not send audio for silent regions, these should /// be inferred using [`SpeakingUpdate`]s (and filled in by the user if required using arrays of zeroes). ///