Skip to content

Commit

Permalink
Fix incorrectly placed ) in docs (absinthe-graphql#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenvanvliet authored and benwilson512 committed Jun 27, 2018
1 parent 36fa631 commit 0b6fc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/absinthe/resolution/helpers.ex
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ defmodule Absinthe.Resolution.Helpers do
loader
|> Dataloader.load(source_name, {resource, args}, parent)
|> on_load(fn loader ->
{:ok, Dataloader.get(loader, source_name, {resource, args}), parent}
{:ok, Dataloader.get(loader, source_name, {resource, args}, parent)}
end)
end
```
Expand Down

0 comments on commit 0b6fc87

Please sign in to comment.