From ae37e4b198d7d1d64ee94a846818bcb1b37f23f0 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Wed, 14 Dec 2022 03:44:40 -0800 Subject: [PATCH] initial commits --- content.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content.go b/content.go index 3279085..3468d59 100644 --- a/content.go +++ b/content.go @@ -100,11 +100,12 @@ func (receiver *Content) Closed() bool { return receiver.closed } -// Read makes strfs.Content fit the io.Reader interface. -// + // Read reads up to len(p) bytes into 'p'. // Read returns the number of bytes actually read, and any errors it encountered. // +// Read makes strfs.Content fit the io.Reader interface. +// // Example usage: // // var content strfs.Content = strfs.CreateContent("ABCDEFGHIJKLMNOPQRSTUVWXYZ")