From 6deaeb0206f942a596da2e95210f35f42fb372a4 Mon Sep 17 00:00:00 2001 From: DocMerlin Date: Sun, 30 Jul 2017 23:50:19 -0500 Subject: [PATCH] Fix comment typo. Fixes a comment typo --- decoder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoder.go b/decoder.go index 6ca40b2..a131a23 100644 --- a/decoder.go +++ b/decoder.go @@ -24,7 +24,7 @@ type Decoder struct { sample_rate int } -// NewEncoder allocates a new Opus decoder and initializes it with the +// NewDecoder allocates a new Opus decoder and initializes it with the // appropriate parameters. All related memory is managed by the Go GC. func NewDecoder(sample_rate int, channels int) (*Decoder, error) { var dec Decoder -- 2.48.1