]> Sergey Matveev's repositories - go-opus.git/commitdiff
Explicit about when deprecated names are removed
authorHraban Luyat <hraban@0brg.net>
Thu, 29 Dec 2016 12:30:29 +0000 (12:30 +0000)
committerHraban Luyat <hraban@0brg.net>
Thu, 29 Dec 2016 12:30:29 +0000 (12:30 +0000)
errors.go

index 169208f97145aae18fa778d02720297fbbd9206e..5448434f316aaebba7f3aa4469f81ee628f7f908 100644 (file)
--- 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)