From 628f1a8d451e5637c1e98333a356e719537ae962 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Thu, 16 Mar 2023 06:15:41 -0700 Subject: [PATCH] handler: fix a comment typo --- handler/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/handler.go b/handler/handler.go index 4203036..36e1159 100644 --- a/handler/handler.go +++ b/handler/handler.go @@ -73,7 +73,7 @@ func (m ServiceMap) Names() []string { return all } -// New adapts a function to a .Handler. The concrete value of fn must be +// New adapts a function to a jrpc2.Handler. The concrete value of fn must be // function accepted by Check. The resulting Func will handle JSON encoding and // decoding, call fn, and report appropriate errors. //