From 019c0f83e13610386642cb47275efed127332797 Mon Sep 17 00:00:00 2001 From: faiface Date: Mon, 3 Jul 2017 17:37:55 +0200 Subject: [PATCH] fix grammar in Streamer doc --- audio/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/interface.go b/audio/interface.go index 91d8522..adbc6a3 100644 --- a/audio/interface.go +++ b/audio/interface.go @@ -32,7 +32,7 @@ type Streamer interface { // // 3. n == 0 && !ok // - // Streamer is drained and no more samples will come. Only this case may occur in the + // The Streamer is drained and no more samples will come. Only this case may occur in the // following calls. Stream(samples [][2]float64) (n int, ok bool) }