From b9d5874c3de8febe747635d0fc23c0a50fe174fc Mon Sep 17 00:00:00 2001 From: Russ Egan Date: Tue, 14 Feb 2023 21:15:20 -0600 Subject: [PATCH] Fixed an ambiguity in the docs --- requester.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/requester.go b/requester.go index be77f04..f52eca1 100644 --- a/requester.go +++ b/requester.go @@ -120,9 +120,8 @@ type Requester struct { // Defaults to http.DefaultClient. Doer Doer - // Middleware wraps the Doer. Middleware will be invoked in the order - // it is in this slice: the first middleware in the slice will be - // the innermost middleware. + // Middleware wraps the Doer. The middleware is ordered from outermost + // to innermost. Middleware []Middleware // Unmarshaler will be used by the Receive methods to unmarshal