audio/wav: Fix a wrong comment

This commit is contained in:
Hajime Hoshi 2020-10-07 23:23:12 +09:00
parent a440504c9e
commit 176e383de4

View File

@ -43,7 +43,7 @@ func (s *Stream) Seek(offset int64, whence int) (int64, error) {
return s.inner.Seek(offset, whence) return s.inner.Seek(offset, whence)
} }
// Read is implementation of io.Closer's Close. // Close is implementation of io.Closer's Close.
func (s *Stream) Close() error { func (s *Stream) Close() error {
runtime.SetFinalizer(s, nil) runtime.SetFinalizer(s, nil)
return s.inner.Close() return s.inner.Close()