Skip to content

Commit

Permalink
TYPO: Fixed variable name and position in interface definition. (#154)
Browse files Browse the repository at this point in the history
I was also confused about the variable names (#153). But in this [commit](5995653) it is clear that the first var is output, second var is input. In this commit I have fixed the issue. Fixes #153
  • Loading branch information
hsblhsn committed Nov 5, 2021
1 parent e0accbd commit 5401a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type Client interface {
ctx context.Context,
opName string,
query string,
input, retval interface{},
retval, input interface{},
) error
}

Expand Down

0 comments on commit 5401a62

Please sign in to comment.