Skip to content

Commit ff1fac7

Browse files
committed
fix typos
1 parent 69b0cb0 commit ff1fac7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Assets/ArtNet/Runtime/Scripts/UdpReceiver.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ public sealed class UdpReceiver
1818
public bool IsRunning => _task is { IsCanceled: false, IsCompleted: false };
1919

2020
public ReceivedPacketEventHandler OnReceivedPacket = (_, _, _) => { };
21-
public ErrorOccuredEventHandler OnUdpStartFailed = _ => { };
22-
public ErrorOccuredEventHandler OnUdpReceiveFailed = _ => { };
23-
public ErrorOccuredEventHandler OnUdpReceiveRaiseException = _ => { };
21+
public ErrorOccurredEventHandler OnUdpStartFailed = _ => { };
22+
public ErrorOccurredEventHandler OnUdpReceiveFailed = _ => { };
23+
public ErrorOccurredEventHandler OnUdpReceiveRaiseException = _ => { };
2424

2525
public delegate void ReceivedPacketEventHandler(byte[] receiveBuffer, int length, EndPoint remoteEp);
26-
public delegate void ErrorOccuredEventHandler(Exception e);
26+
public delegate void ErrorOccurredEventHandler(Exception e);
2727
public UdpReceiver(int port)
2828
{
2929
Port = port;

0 commit comments

Comments
 (0)