From dd562f1a28f37681c9dd81a81ebf30ecc49a2b9f Mon Sep 17 00:00:00 2001 From: scruzin Date: Sun, 13 Jan 2019 13:15:03 +1030 Subject: [PATCH] Update comment to reflect new method names. --- rtmp/packet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtmp/packet.go b/rtmp/packet.go index 8b5d9a83..bf16b3cf 100644 --- a/rtmp/packet.go +++ b/rtmp/packet.go @@ -95,7 +95,7 @@ type packet struct { body []byte } -// readFrom reads an packet from the RTMP connection. +// readFrom reads a packet from the RTMP connection. func (pkt *packet) readFrom(s *Session) error { var hbuf [fullHeaderSize]byte header := hbuf[:]