From 1f5d26b7d377701187e319c761a13ab25448d503 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 18 Jan 2016 17:44:16 -0500 Subject: [PATCH] Unit correction in voice docstrings. --- discord/voice_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/voice_client.py b/discord/voice_client.py index 8387afb30..74713e0b0 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -482,7 +482,7 @@ class VoiceClient: Parameters ---------- sample_rate : int - Sets the sample rate of the OpusEncoder. + Sets the sample rate of the OpusEncoder. The unit is in Hz. channels : int Sets the number of channels for the OpusEncoder. 2 for stereo, 1 for mono. @@ -528,7 +528,7 @@ class VoiceClient: +---------------------+-----------------------------------------------------+ The stream must have the same sampling rate as the encoder and the same - number of channels. The defaults are 48000 Mhz and 2 channels. You + number of channels. The defaults are 48000 Hz and 2 channels. You could change the encoder options by using :meth:`encoder_options` but this must be called **before** this function.