Skip to content

Commit cd95964

Browse files
committed
simpler comment
1 parent 9edd3e1 commit cd95964

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

graphql.go

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -250,25 +250,8 @@ type Request struct {
250250
vars map[string]interface{}
251251
files []file
252252

253-
// Header mirrors the Header of a http.Request. It contains
254-
// the request header fields either received
255-
// by the server or to be sent by the client.
256-
//
257-
// If a server received a request with header lines,
258-
//
259-
// Host: example.com
260-
// accept-encoding: gzip, deflate
261-
// Accept-Language: en-us
262-
// fOO: Bar
263-
// foo: two
264-
//
265-
// then
266-
//
267-
// Header = map[string][]string{
268-
// "Accept-Encoding": {"gzip, deflate"},
269-
// "Accept-Language": {"en-us"},
270-
// "Foo": {"Bar", "two"},
271-
// }
253+
// Header represent any request headers that will be set
254+
// when the request is made.
272255
Header http.Header
273256
}
274257

0 commit comments

Comments
 (0)