From 0b42fdd71d7742868ba26ec36a01f6f8ee0babba Mon Sep 17 00:00:00 2001 From: Ce Gao Date: Wed, 11 May 2016 18:53:48 +0800 Subject: [PATCH] fix a typo in queue.go --- queue/queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queue/queue.go b/queue/queue.go index 3399d1987..0cdf2e6fc 100644 --- a/queue/queue.go +++ b/queue/queue.go @@ -44,7 +44,7 @@ func Remove(c context.Context, w *Work) error { return FromContext(c).Remove(w) } -// PullClose retrieves and removes the head of this queue, +// Pull retrieves and removes the head of this queue, // waiting if necessary until work becomes available. func Pull(c context.Context) *Work { return FromContext(c).Pull()