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

docs: Fix a few typos #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion msgpackrpc/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class Server(session.Session):
"""\
Server is usaful for MessagePack RPC Server.
Server is useful for MessagePack RPC Server.
"""

def __init__(self, dispatcher, loop=None, builder=tcp, pack_encoding='utf-8', unpack_encoding=None):
Expand Down
2 changes: 1 addition & 1 deletion msgpackrpc/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Session(object):
transport layer.

self._request_table(request table) stores the relationship between messageid and
corresponding future. When the new requets are sent, the Session generates
corresponding future. When the new request are sent, the Session generates
new message id and new future. Then the Session registers them to request table.

When it receives the message, the Session lookups the request table and set the
Expand Down