From 1e2d058c78969118b099940afdb100a3b93325cc Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 14 Feb 2023 21:40:18 -0700 Subject: reencode: Update the doc comment about all the interfaces implemented --- reencode.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reencode.go b/reencode.go index 32796f6..f23c85a 100644 --- a/reencode.go +++ b/reencode.go @@ -79,8 +79,8 @@ func NewReEncoder(out io.Writer, cfg ReEncoderConfig) *ReEncoder { } // A ReEncoder takes a stream of JSON elements (by way of implementing -// io.Writer and WriteRune), and re-encodes the JSON, writing it to -// the .Out member. +// io.Writer, io.StringWriter, io.ByteWriter, and WriteRune), and +// re-encodes the JSON, writing it to the .Out member. // // This is useful for prettifying, minifying, sanitizing, and/or // validating JSON. -- cgit v1.2.3-2-g168b