Use more Pythonic terminology here

"Hash" in the Python world implies a cryptographic hash, or possibly a checksum. Here, I believe "hash" is being used to mean "hash map", which would be more commonly known in Python as a dictionary, or dict for short.
This commit is contained in:
Dan Palmer 2017-11-25 12:51:53 +00:00 committed by GitHub
parent e71a52140a
commit 834d52f9d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ Middlewares ``resolve`` is invoked with several arguments:
- ``next`` represents the execution chain. Call ``next`` to continue evalution.
- ``root`` is the root value object passed throughout the query.
- ``info`` is the resolver info.
- ``args`` is the hash of arguments passed to the field.
- ``args`` is the dict of arguments passed to the field.
Example
-------