From b1d654226a2ca85d401f5ff28b17955837fbb8df Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 09:07:03 -0700 Subject: [PATCH] fix(conntrack): correct 'occured' -> 'occurred' in InstrumentedConn.Idle docstring Doc comment on InstrumentedConn.Idle in pkg/smokescreen/conntrack/instrumented_conn.go used 'occured' instead of 'occurred'. go build and go vet on the package stay clean. --- pkg/smokescreen/conntrack/instrumented_conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/smokescreen/conntrack/instrumented_conn.go b/pkg/smokescreen/conntrack/instrumented_conn.go index 5cb6a482..c1b44ed6 100644 --- a/pkg/smokescreen/conntrack/instrumented_conn.go +++ b/pkg/smokescreen/conntrack/instrumented_conn.go @@ -172,7 +172,7 @@ func (ic *InstrumentedConn) Write(b []byte) (int, error) { return n, err } -// Idle returns true when the connection's last activity occured before the +// Idle returns true when the connection's last activity occurred before the // configured idle threshold. // // Idle should be called with the connection's lock held.