From 0a63d8ecda5f73ce229922aaaf2290edec454090 Mon Sep 17 00:00:00 2001 From: ComputerMaster1st Date: Thu, 29 Nov 2018 10:13:38 +0000 Subject: [PATCH] Fixed Spelling --- src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs b/src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs index cae9eced9..e8a0373ca 100644 --- a/src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs +++ b/src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs @@ -118,10 +118,10 @@ namespace Discord.Net.Udp { var receiveTask = _udp.ReceiveAsync(); - _ = receiveTask.ContinueWith((recieveResult) => + _ = receiveTask.ContinueWith((receiveResult) => { //observe the exception as to not receive as unhandled exception - _ = recieveResult.Exception; + _ = receiveResult.Exception; }, TaskContinuationOptions.OnlyOnFaulted);