From 029a4aff079111799fdc4d7dab2c2c4367056357 Mon Sep 17 00:00:00 2001 From: arnaudroux Date: Wed, 14 Apr 2021 10:33:09 +0200 Subject: [PATCH] Fix typos on Services documentation --- docs/tutorial/building_services.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/building_services.rst b/docs/tutorial/building_services.rst index 81c4414..bd3bc83 100644 --- a/docs/tutorial/building_services.rst +++ b/docs/tutorial/building_services.rst @@ -125,7 +125,7 @@ and deserializing the post instances into protocol buffer messages. We can do this by declaring serializers, create a file in the ``blog`` directory named ``serializers.py`` and add the following:: - from django_grpc_framework import proto_serializerss + from django_grpc_framework import proto_serializers from blog.models import Post from blog_proto import post_pb2 @@ -188,7 +188,7 @@ in the ``blog`` directory named ``services.py`` and add the following:: Finally we need to wire there services up, create ``blog/handlers.py`` file:: - from blog._services import PostService + from blog.services import PostService from blog_proto import post_pb2_grpc