From d9b1779a3d2144fecb7fcd9682d8ff99d2b74b34 Mon Sep 17 00:00:00 2001 From: RogueException Date: Tue, 24 Nov 2015 15:09:59 -0400 Subject: [PATCH] Minor comment edit --- src/Discord.Net/DiscordWSClientConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net/DiscordWSClientConfig.cs b/src/Discord.Net/DiscordWSClientConfig.cs index 9778cace4..64c092d9c 100644 --- a/src/Discord.Net/DiscordWSClientConfig.cs +++ b/src/Discord.Net/DiscordWSClientConfig.cs @@ -30,7 +30,7 @@ namespace Discord /// Gets or sets the max buffer length (in milliseconds) for outgoing voice packets. This value is the target maximum but is not guaranteed, the buffer will often go slightly above this value. public int VoiceBufferLength { get { return _voiceBufferLength; } set { SetValue(ref _voiceBufferLength, value); } } private int _voiceBufferLength = 1000; - /// Gets or sets the bitrate used (in kbit/s, between 1 and 512) for outgoing voice packets. A null value will use default opus settings. + /// Gets or sets the bitrate used (in kbit/s, between 1 and 512 inclusively) for outgoing voice packets. A null value will use default Opus settings. public int? VoiceBitrate { get { return _voiceBitrate; } set { SetValue(ref _voiceBitrate, value); } } private int? _voiceBitrate = null;