From d2a6c2d64d25d3b86f81c811d38e43739f039ac6 Mon Sep 17 00:00:00 2001 From: Tomas Aparicio Date: Thu, 7 Sep 2017 11:00:48 +0200 Subject: [PATCH] refactor(resize): add Go version comment --- resize_legacy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resize_legacy.go b/resize_legacy.go index 381450c..6583ec5 100644 --- a/resize_legacy.go +++ b/resize_legacy.go @@ -4,7 +4,7 @@ package bimg // Resize is used to transform a given image as byte buffer // with the passed options. -// Used as proxy to resizer() +// Used as proxy to resizer() only in Go <= 1.6 versions func Resize(buf []byte, o Options) ([]byte, error) { return resizer(buf, o) }