From 69b628686105e4269c389f1125d79742ccab2bc2 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Fri, 16 Jul 2021 22:10:53 +0500 Subject: [PATCH] Fix typo in docstring of ObjectType (#1343) --- graphene/types/objecttype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/types/objecttype.py b/graphene/types/objecttype.py index f4a0f5a0..c69be937 100644 --- a/graphene/types/objecttype.py +++ b/graphene/types/objecttype.py @@ -66,7 +66,7 @@ class ObjectType(BaseType, metaclass=ObjectTypeMeta): Methods starting with ``resolve_`` are bound as resolvers of the matching Field 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. .. code:: python