Fixing Dataloader docs due to tox issue.

This commit is contained in:
Justin Miller 2021-04-12 23:32:11 -07:00
parent 12302b78f9
commit 002b769db4

View File

@ -28,8 +28,8 @@ Create loaders by providing a batch loading function.
A batch loading function accepts a list of keys, and returns a ``Promise``
which resolves to a list of ``values``.
``DataLoader`` will coalesce all individual loads which occur within a
single frame of execution (executed once the wrapping promise is resolved)
``DataLoader`` will coalesce all individual loads which occur within a
single frame of execution (executed once the wrapping promise is resolved)
and then call your batch function with all requested keys.