From 41796381df978e2900042c4fe6870177cf25afe9 Mon Sep 17 00:00:00 2001 From: Piotr Piotrowski Date: Tue, 3 Jan 2023 19:01:16 +0100 Subject: [PATCH] Fix typo Co-authored-by: Waldemar Quevedo --- micro/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micro/request.go b/micro/request.go index 667555900..dbc4ce0f7 100644 --- a/micro/request.go +++ b/micro/request.go @@ -28,7 +28,7 @@ type ( } // HandlerFunc is a function implementing [Handler]. - // It allows using a function as a reqeust hadnler, without having to implement Handle + // It allows using a function as a request handler, without having to implement Handle // on a separate type. HandlerFunc func(Request)