aboutsummaryrefslogtreecommitdiff
path: root/fasthttpadaptor
diff options
context:
space:
mode:
authorGravatar Oleksandr Redko <oleksandr.red+github@gmail.com> 2023-03-14 23:37:04 +0200
committerGravatar GitHub <noreply@github.com> 2023-03-14 22:37:04 +0100
commitb334443d63cfaf075de3a6436ececbc01ffb6e90 (patch)
tree2377a84c2b0febced6449185c68b40f1c34ba2ac /fasthttpadaptor
parentclient: HostClient.Do hangs out when ErrConnPoolStrategyNotImpl (#1515) (diff)
downloadfasthttp-b334443d63cfaf075de3a6436ececbc01ffb6e90.tar.gz
fasthttp-b334443d63cfaf075de3a6436ececbc01ffb6e90.tar.bz2
fasthttp-b334443d63cfaf075de3a6436ececbc01ffb6e90.zip
docs: add missing dot to ConvertRequest comment (#1516)
Diffstat (limited to 'fasthttpadaptor')
-rw-r--r--fasthttpadaptor/request.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/fasthttpadaptor/request.go b/fasthttpadaptor/request.go
index 79d192b..827ab92 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!