TYPO: Fixed variable name and position in interface definition. (#154)

I was also confused about the variable names (#153). But in this [commit](https://github.com/Khan/genqlient/commit/5995653583af6e8d42477652f7d51ac4201b9fe6) it is clear that the first var is output, second var is input. In this commit I have fixed the issue. Fixes #153
This commit is contained in:
Hasibul Hasan
2021-11-05 22:21:45 +06:00
committed by GitHub
parent e0accbded1
commit 5401a62dcb
+1 -1
View File
@@ -42,7 +42,7 @@ type Client interface {
ctx context.Context,
opName string,
query string,
input, retval interface{},
retval, input interface{},
) error
}