From 390490e7b10023a1ccf03da7ac415bc41d9309be Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 19 Jan 2022 12:34:11 -0800 Subject: [PATCH] net/packet: fix typo in comment Change-Id: Ia666609fde18db44bf38d4e656f490fc372ac3b6 Signed-off-by: Brad Fitzpatrick --- net/packet/packet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/packet/packet.go b/net/packet/packet.go index 409598f0e..4c83dd59a 100644 --- a/net/packet/packet.go +++ b/net/packet/packet.go @@ -52,7 +52,7 @@ type Parsed struct { Src netaddr.IPPort // DstIP4 is the destination address. Family matches IPVersion. Dst netaddr.IPPort - // TCPFlags is the packet's TCP flag bigs. Valid iff IPProto == TCP. + // TCPFlags is the packet's TCP flag bits. Valid iff IPProto == TCP. TCPFlags TCPFlag }