Skip to content

Commit

Permalink
Update tcp.h (#516)
Browse files Browse the repository at this point in the history
Fix a spelling error
  • Loading branch information
SuperBigYB authored Sep 19, 2023
1 parent 3943700 commit 64da67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tins/tcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class TINS_API TCP : public PDU {
* TCP tcp = ...;
* if(tcp.has_flags(TCP::SYN | TCP::ACK)) {
* // It's a SYN+ACK, but it also possible that other flags are set!
* // it is equivalent to: (tpc.flags() & (TCP::SYN | TCP::ACK)) == (TCP::SYN | TCP::ACK)
* // it is equivalent to: (tcp.flags() & (TCP::SYN | TCP::ACK)) == (TCP::SYN | TCP::ACK)
* }
* \endcode
*
Expand Down

0 comments on commit 64da67c

Please # to comment.