From 9a6d0a2f5f6161b69c9d1dc22003213fd2e021ad Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Thu, 29 Dec 2016 12:30:29 +0000 Subject: [PATCH] Explicit about when deprecated names are removed --- errors.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 2.48.1