Fix typo in docstring of ObjectType (#1343)

This commit is contained in:
Sergey Fedoseev 2021-07-16 22:10:53 +05:00 committed by GitHub
parent 485b1ed325
commit 69b6286861
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ class ObjectType(BaseType, metaclass=ObjectTypeMeta):
Methods starting with ``resolve_<field_name>`` are bound as resolvers of the matching Field Methods starting with ``resolve_<field_name>`` are bound as resolvers of the matching Field
name. If no resolver is provided, the default resolver is used. name. If no resolver is provided, the default resolver is used.
Ambiguous types with Interface and Union can be determined through``is_type_of`` method and Ambiguous types with Interface and Union can be determined through ``is_type_of`` method and
``Meta.possible_types`` attribute. ``Meta.possible_types`` attribute.
.. code:: python .. code:: python