1
0
Fork 0
mirror of https://github.com/sourcegraph/jsonrpc2.git synced 2026-06-16 04:04:56 +02:00

typo in AsyncHandler docstring

This commit is contained in:
Keegan Carruthers-Smith 2017-02-21 17:51:53 +02:00
parent 3a7c446248
commit b02337b177

View file

@ -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}
}