From 0d45ea2853e8fa138a242336f40eadf5f66fe947 Mon Sep 17 00:00:00 2001 From: Bryan Moffatt Date: Mon, 9 Jan 2023 10:54:59 -0800 Subject: [PATCH] Update godoc in entry_generic.go --- lambda/entry_generic.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/lambda/entry_generic.go b/lambda/entry_generic.go index 08bcdf20..29708385 100644 --- a/lambda/entry_generic.go +++ b/lambda/entry_generic.go @@ -16,8 +16,6 @@ type HandlerFunc[TIn, TOut any] interface { // StartHandlerFunc is the same as StartWithOptions except that it takes a generic input // so that the function signature can be validated at compile time. -// -// Currently only the `func (context.Context, TIn) (TOut, error)` variant is supported func StartHandlerFunc[TIn any, TOut any, H HandlerFunc[TIn, TOut]](handler H, options ...Option) { start(newHandler(handler, options...)) }