Skip to content

Commit b76e89c

Browse files
authored
docs: remove unpair bracket (#1500)
1 parent 81e7eee commit b76e89c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/execution/dataloader.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ and then call your batch function with all requested keys.
3636
user_loader = UserLoader()
3737
3838
user1 = await user_loader.load(1)
39-
user1_best_friend = await user_loader.load(user1.best_friend_id))
39+
user1_best_friend = await user_loader.load(user1.best_friend_id)
4040
4141
user2 = await user_loader.load(2)
42-
user2_best_friend = await user_loader.load(user2.best_friend_id))
42+
user2_best_friend = await user_loader.load(user2.best_friend_id)
4343
4444
4545
A naive application may have issued *four* round-trips to a backend for the

0 commit comments

Comments
 (0)