Skip to content

Commit

Permalink
docs: remove unpair bracket (#1500)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samoed committed Mar 9, 2023
1 parent 81e7eee commit b76e89c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/execution/dataloader.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ and then call your batch function with all requested keys.
user_loader = UserLoader()
user1 = await user_loader.load(1)
user1_best_friend = await user_loader.load(user1.best_friend_id))
user1_best_friend = await user_loader.load(user1.best_friend_id)
user2 = await user_loader.load(2)
user2_best_friend = await user_loader.load(user2.best_friend_id))
user2_best_friend = await user_loader.load(user2.best_friend_id)
A naive application may have issued *four* round-trips to a backend for the
Expand Down

0 comments on commit b76e89c

Please sign in to comment.