Codebase list golang-github-go-kit-kit / e82fca6
transport/http: fix typo in comment Peter Bourgon 7 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
66 )
77
88 // RequestFunc may take information from an HTTP request and put it into a
9 // request context. In Servers, BeforeFuncs are executed prior to invoking the
10 // endpoint. In Clients, BeforeFuncs are executed after creating the request
9 // request context. In Servers, RequestFuncs are executed prior to invoking the
10 // endpoint. In Clients, RequestFuncs are executed after creating the request
1111 // but prior to invoking the HTTP client.
1212 type RequestFunc func(context.Context, *http.Request) context.Context
1313