From c697eed1be8be7060c84008f3c145af7111dacd9 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sat, 11 Apr 2020 10:48:32 +0100 Subject: [PATCH] Update comments --- sync/sync.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sync/sync.go b/sync/sync.go index 94d62043..ebaec6da 100644 --- a/sync/sync.go +++ b/sync/sync.go @@ -1,4 +1,4 @@ -// Package sync is a distributed synchronization framework +// Package sync is an interface for distributed synchronization package sync import ( @@ -10,7 +10,7 @@ var ( ErrLockTimeout = errors.New("lock timeout") ) -// Sync is an interface for synchronization +// Sync is an interface for distributed synchronization type Sync interface { // Initialise options Init(...Option) error