From b02337b177765febba753be4b7d9c26e3a9fd220 Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Tue, 21 Feb 2017 17:51:53 +0200 Subject: [PATCH] typo in AsyncHandler docstring --- async.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/async.go b/async.go index 4873a9e..bc8a370 100644 --- a/async.go +++ b/async.go @@ -2,8 +2,8 @@ package jsonrpc2 import "context" -// AsyncHandler wraps a Handler such that it each request is handled in its -// own goroutine. It is a convenience wrapper. +// AsyncHandler wraps a Handler such that each request is handled in its own +// goroutine. It is a convenience wrapper. func AsyncHandler(h Handler) Handler { return asyncHandler{h} }