From cc16497fcd44166a39545648e1d906bebba3de8a Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 9 Oct 2018 17:15:15 +0300 Subject: [PATCH] Update example code in README Organize imports to groups According to https://github.com/golang/go/wiki/CodeReviewComments#imports. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c5789cc..51fc6bf 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,9 @@ one) to recover from downtime quickly. (See the docs for `NewFrom()` for caveats ```go import ( "fmt" - "github.com/patrickmn/go-cache" "time" + + "github.com/patrickmn/go-cache" ) func main() {