initial commits

master
Charles Iliya Krempeaux 2022-12-14 03:43:11 -08:00
parent 6f2d80962f
commit 3a409f7dd3
1 changed files with 2 additions and 2 deletions

View File

@ -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