From c914dc259594046800195b4b5784f8a2c354c9a2 Mon Sep 17 00:00:00 2001 From: Volodymyr Burenin Date: Sun, 13 Mar 2016 21:48:50 -0700 Subject: [PATCH] typo and import fix --- cwaitgroup_test.go | 2 +- doc.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cwaitgroup_test.go b/cwaitgroup_test.go index 5d9ea6d..9672377 100644 --- a/cwaitgroup_test.go +++ b/cwaitgroup_test.go @@ -1,9 +1,9 @@ package nsync import ( + "sync" "testing" "time" - "sync" ) func TestCWaitGroup(t *testing.T) { diff --git a/doc.go b/doc.go index 1012779..1c42826 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// This package provide a set of primitives that are not provided by standard Go library. +// nsync package provides a set of primitives that are not provided by standard Go library. // // NamedMutex - a map of dynamically created mutexes by a referred name. //