From 3a409f7dd3b8fe3039224f3e7bdfc9d636a79c01 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Wed, 14 Dec 2022 03:43:11 -0800 Subject: [PATCH] initial commits --- content.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content.go b/content.go index 772a21d..3279085 100644 --- a/content.go +++ b/content.go @@ -70,11 +70,11 @@ func EmptyContent() Content { return Content{} } -// Close makes strfs.Content fit the io.Closer interface. -// // Call close will stop the Read method from working. // // Close can safely be called more than once. +// +// Close makes strfs.Content fit the io.Closer interface. func (receiver *Content) Close() error { if nil == receiver { return errNilReceiver