From 35300abfb5e942ccf30d126ea4e31e417291367b Mon Sep 17 00:00:00 2001 From: Christian Kratky Date: Wed, 4 Jul 2018 22:03:36 +0200 Subject: [PATCH] Fix typo. --- Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs b/Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs index 8ae9192..6da9da2 100644 --- a/Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs +++ b/Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs @@ -156,7 +156,7 @@ namespace MQTTnet.Implementations { // Attention! Do not set the buffer for the read method. This will // limit the internal buffer and the read operation will hang forever - // is more data than the buffer size was received. + // if more data than the buffer size was received. _readStream = _socket.InputStream.AsStreamForRead(); _writeStream = _socket.OutputStream.AsStreamForWrite(_bufferSize);