From c49edc6137e6daf08b6692a8645127ad02967434 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Fri, 17 Feb 2012 10:21:12 +1100 Subject: [PATCH] net/textproto: add Conn to doc comment This revolutionary transfiguration undergirding the code base Fixes #2945. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5676072 --- src/pkg/net/textproto/textproto.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pkg/net/textproto/textproto.go b/src/pkg/net/textproto/textproto.go index 317ec72b0c..e47b6908ad 100644 --- a/src/pkg/net/textproto/textproto.go +++ b/src/pkg/net/textproto/textproto.go @@ -20,6 +20,9 @@ // // Writer, to write dot-encoded text blocks. // +// Conn, a convenient packaging of Reader, Writer, and Pipeline for use +// with a single network connection." +// package textproto import ( -- 2.50.0