From c641e6278633b35e549a0216adfbaf08d438bfb7 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Sun, 2 May 2021 21:17:26 +0300 Subject: [PATCH] Fix comment --- proto/proto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/proto.go b/proto/proto.go index 68f3625..b39e65a 100644 --- a/proto/proto.go +++ b/proto/proto.go @@ -432,7 +432,7 @@ func CheckChunked(buf []byte) (chunkEnd int, full bool) { return } -// Message is an interface used to provide protocol state or store dummy data for future use +// ProtocolStateSetter is an interface used to provide protocol state for future use type ProtocolStateSetter interface { SetProtocolState(interface{}) ProtocolState() interface{}