From ab929e465b076a55c714a23c7bd778f4ba0009d4 Mon Sep 17 00:00:00 2001 From: yuancjun <102513452+yuancjun@users.noreply.github.com> Date: Wed, 6 Jul 2022 19:48:43 +0800 Subject: [PATCH] update comment for ghttp.Request (#1968) --- net/ghttp/ghttp_request.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ghttp/ghttp_request.go b/net/ghttp/ghttp_request.go index c5d998dbf..7c61f8fd0 100644 --- a/net/ghttp/ghttp_request.go +++ b/net/ghttp/ghttp_request.go @@ -31,8 +31,8 @@ type Request struct { Session *gsession.Session // Session. Response *Response // Corresponding Response of this request. Router *Router // Matched Router for this request. Note that it's not available in HOOK handler. - EnterTime int64 // Request starting time in microseconds. - LeaveTime int64 // Request to end time in microseconds. + EnterTime int64 // Request starting time in milliseconds. + LeaveTime int64 // Request to end time in milliseconds. Middleware *middleware // Middleware manager. StaticFile *staticFile // Static file object for static file serving.