Skip to content

Commit 64da67c

Browse files
authored
Update tcp.h (#516)
Fix a spelling error
1 parent 3943700 commit 64da67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/tins/tcp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ class TINS_API TCP : public PDU {
303303
* TCP tcp = ...;
304304
* if(tcp.has_flags(TCP::SYN | TCP::ACK)) {
305305
* // It's a SYN+ACK, but it also possible that other flags are set!
306-
* // it is equivalent to: (tpc.flags() & (TCP::SYN | TCP::ACK)) == (TCP::SYN | TCP::ACK)
306+
* // it is equivalent to: (tcp.flags() & (TCP::SYN | TCP::ACK)) == (TCP::SYN | TCP::ACK)
307307
* }
308308
* \endcode
309309
*

0 commit comments

Comments
 (0)