From: Hraban Luyat Date: Thu, 29 Dec 2016 12:30:29 +0000 (+0000) Subject: Explicit about when deprecated names are removed X-Git-Tag: v2.0.0~40^2 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=9a6d0a2f5f6161b69c9d1dc22003213fd2e021ad;p=go-opus.git Explicit about when deprecated names are removed --- diff --git a/errors.go b/errors.go index 169208f..5448434 100644 --- a/errors.go +++ b/errors.go @@ -60,8 +60,8 @@ var ( ErrAllocFail = Error(C.CONST_OPUS_ALLOC_FAIL) ) -// DEPRECATED versions of the above variables. Will be removed next year. Please -// don't use. +// DEPRECATED versions of the above variables. Will be removed end of 2017. +// Please don't use. var ( ERR_OPUS_OK = Error(C.CONST_OPUS_OK) ERR_OPUS_BAD_ARG = Error(C.CONST_OPUS_BAD_ARG) @@ -102,8 +102,8 @@ var ( ErrStreamBadTimestamp = StreamError(C.CONST_OP_EBADTIMESTAMP) ) -// DEPRECATED versions of the above variables. Will be removed next year. Please -// don't use. +// DEPRECATED versions of the above variables. Will be removed end of 2017. +// Please don't use. var ( ERR_OP_FALSE = StreamError(C.CONST_OP_FALSE) ERR_OP_EOF = StreamError(C.CONST_OP_EOF)