Browse Source

Fixed Spelling

pull/1202/head
ComputerMaster1st 6 years ago
parent
commit
0a63d8ecda
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs

+ 2
- 2
src/Discord.Net.WebSocket/Net/DefaultUdpSocket.cs View File

@@ -118,10 +118,10 @@ namespace Discord.Net.Udp
{ {
var receiveTask = _udp.ReceiveAsync(); var receiveTask = _udp.ReceiveAsync();


_ = receiveTask.ContinueWith((recieveResult) =>
_ = receiveTask.ContinueWith((receiveResult) =>
{ {
//observe the exception as to not receive as unhandled exception //observe the exception as to not receive as unhandled exception
_ = recieveResult.Exception;
_ = receiveResult.Exception;


}, TaskContinuationOptions.OnlyOnFaulted); }, TaskContinuationOptions.OnlyOnFaulted);




Loading…
Cancel
Save