Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos on building_services documentation #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial/building_services.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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


Expand Down