From 06b464f084c0d152d5fdf770f6874efd3157b964 Mon Sep 17 00:00:00 2001 From: Evgenii Date: Sat, 11 Sep 2021 13:05:40 +0300 Subject: [PATCH] fix typo in deadline (#1099) --- http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.go b/http.go index 2511819b00..dd1418a9a6 100644 --- a/http.go +++ b/http.go @@ -53,7 +53,7 @@ type Request struct { // Client/HostClient shouldn't use this field but should depend on the uri.scheme instead. isTLS bool - // Request timeout. Usually set by DoDealine or DoTimeout + // Request timeout. Usually set by DoDeadline or DoTimeout // if <= 0, means not set timeout time.Duration }