Skip to content

Commit d5e71bc

Browse files
gvangooljkimbo
authored andcommitted
Fix typo of imoprt to import (#742)
1 parent a04fff9 commit d5e71bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/mutations.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ customize the look up with the ``lookup_field`` attribute on the ``SerializerMut
151151
.. code:: python
152152
153153
from graphene_django.rest_framework.mutation import SerializerMutation
154-
from .serializers imoprt MyModelSerializer
154+
from .serializers import MyModelSerializer
155155
156156
157157
class AwesomeModelMutation(SerializerMutation):
@@ -168,7 +168,7 @@ Use the method ``get_serializer_kwargs`` to override how updates are applied.
168168
.. code:: python
169169
170170
from graphene_django.rest_framework.mutation import SerializerMutation
171-
from .serializers imoprt MyModelSerializer
171+
from .serializers import MyModelSerializer
172172
173173
174174
class AwesomeModelMutation(SerializerMutation):
@@ -199,7 +199,7 @@ You can use relay with mutations. A Relay mutation must inherit from
199199

200200
.. code:: python
201201
202-
import graphene
202+
import graphene
203203
from graphene import relay
204204
from graphene_django import DjangoObjectType
205205
from graphql_relay import from_global_id

0 commit comments

Comments
 (0)