Skip to content

Commit a4c392b

Browse files
committed
Fix spelling errors
1 parent b8d86b3 commit a4c392b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EthernetUdp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int EthernetUDP::parsePacket()
119119
_remaining = (tmpBuf[0] & (0x7))<<8 | tmpBuf[1];
120120

121121
if((tmpBuf[0] & W6100_UDP_HEADER_IPV) == W6100_UDP_HEADER_IPV6) {
122-
// IPv6 UDP Recived
122+
// IPv6 UDP Received
123123
// 0 1
124124
// 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
125125
// 18 19
@@ -129,7 +129,7 @@ int EthernetUDP::parsePacket()
129129
_remoteIP = &tmpBuf[2];
130130
_remotePort = (tmpBuf[18]<<8) | tmpBuf[19];
131131
} else {
132-
// IPv4 UDP Recived
132+
// IPv4 UDP Received
133133
// 0 1
134134
// 2 3 4 5
135135
// 6 7

0 commit comments

Comments
 (0)