From b334443d63cfaf075de3a6436ececbc01ffb6e90 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 14 Mar 2023 23:37:04 +0200 Subject: [PATCH] docs: add missing dot to ConvertRequest comment (#1516) --- fasthttpadaptor/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fasthttpadaptor/request.go b/fasthttpadaptor/request.go index 79d192b425..827ab9242f 100644 --- a/fasthttpadaptor/request.go +++ b/fasthttpadaptor/request.go @@ -10,7 +10,7 @@ import ( "github.com/valyala/fasthttp" ) -// ConvertRequest convert a fasthttp.Request to an http.Request +// ConvertRequest converts a fasthttp.Request to an http.Request. // forServer should be set to true when the http.Request is going to be passed to a http.Handler. // // The http.Request must not be used after the fasthttp handler has returned!