From d6c1bb2ae8f703dfe3ba90a8ca0b2437c5d10ba7 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 28 Jun 2016 02:50:13 +0900 Subject: [PATCH] audio: Fix a comment --- audio/audio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/audio.go b/audio/audio.go index 929565741..4b20dca83 100644 --- a/audio/audio.go +++ b/audio/audio.go @@ -319,7 +319,7 @@ func NewPlayerFromBytes(context *Context, src []byte) (*Player, error) { // Close closes the stream. Ths source stream passed by NewPlayer will also be closed. // -// After closing, the stream owned by the player will also be closed by calling its Close. +// When closing, the stream owned by the player will also be closed by calling its Close. // // This function is concurrent-safe. func (p *Player) Close() error {