From 00b74f41deaa5892905788c60cab9dfb8c8be402 Mon Sep 17 00:00:00 2001 From: Ketan Umare Date: Thu, 18 Jun 2020 22:33:42 -0700 Subject: [PATCH] Pkgname was wrong (#66) --- futures/future.go | 2 +- futures/future_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/futures/future.go b/futures/future.go index 8aad00a..a90e690 100644 --- a/futures/future.go +++ b/futures/future.go @@ -6,7 +6,7 @@ // } // f.Ready() // can be checked for completion // f.Get() .. will block till the given sub-routine returns -package data +package futures import ( "context" diff --git a/futures/future_test.go b/futures/future_test.go index a5923b2..0ff617e 100644 --- a/futures/future_test.go +++ b/futures/future_test.go @@ -1,4 +1,4 @@ -package data +package futures import ( "context"