aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mumd/src/audio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/audio.rs b/mumd/src/audio.rs
index 46f7050..b3c809d 100644
--- a/mumd/src/audio.rs
+++ b/mumd/src/audio.rs
@@ -76,7 +76,7 @@ impl TryFrom<&str> for NotificationEvents {
pub struct AudioInput {
device: DefaultAudioInputDevice,
- /// Voice packets received from the network.
+ /// Outgoing voice packets that should be sent over the network.
channel_receiver:
Arc<tokio::sync::Mutex<Box<dyn Stream<Item = VoicePacket<Serverbound>> + Unpin>>>,
}