Skip to content

Commit

Permalink
audio/wav: Fix a wrong comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimehoshi committed Oct 7, 2020
1 parent a440504 commit 176e383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audio/wav/decode.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (s *Stream) Seek(offset int64, whence int) (int64, error) {
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 {
runtime.SetFinalizer(s, nil)
return s.inner.Close()
Expand Down

0 comments on commit 176e383

Please sign in to comment.