diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-01-22 10:23:44 -0800 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2020-01-22 10:23:44 -0800 |
commit | 747137c120bca27aeb259817d30ef60e01521621 (patch) | |
tree | f3490531d98d533ef7e601373bbeffbac1e24b0e | |
parent | 9f736ac6a7747917f690596ac9b072c108b5670c (diff) |
Address GitHub comments.
-rw-r--r-- | pkg/tcpip/iptables/types.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tcpip/iptables/types.go b/pkg/tcpip/iptables/types.go index a0bfc8b41..a8b972f1b 100644 --- a/pkg/tcpip/iptables/types.go +++ b/pkg/tcpip/iptables/types.go @@ -153,7 +153,7 @@ func (table *Table) SetMetadata(metadata interface{}) { // packets this rule applies to. If there are no matchers in the rule, it // applies to any packet. type Rule struct { - // IPHeaderFilter holds basic IP filtering fields common to every rule. + // Filter holds basic IP filtering fields common to every rule. Filter IPHeaderFilter // Matchers is the list of matchers for this rule. |