8000 Fix typo · nirum-lang/nirum-python@1721295 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1721295

Browse files
committed
Fix typo
1 parent 7bea10f commit 1721295

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

nirum/deserialize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def deserialize_meta(cls, data):
201201
hasattr(cls, '__nirum_inner_type__')):
202202
d = deserialize_unboxed_type(cls, data)
203203
elif type(cls) is typing.TupleMeta:
204-
# typing.Tuple dosen't have either `__origin__` and `__args__`
204+
# typing.Tuple doesn't have either `__origin__` and `__args__`
205205
# so it have to be handled special case.
206206
d = deserialize_tuple_type(cls, data)
207207
elif is_support_abstract_type(cls):

nirum/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def rpc(self, request, args):
138138
return self.error(
139139
400,
140140
request,
141-
message="Service dosen't have procedure named '{}'.".format(
141+
message="Service doesn't have procedure named '{}'.".format(
142142
request_method
143143
)
144144
)

nirum/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def call(self,
2222
call. See also `Nirum's serialization format
2323
docs <serialization-format>`_.
2424
:type method_name: :class:`str`
25-
:param paylaod: A mapping of parameter names to serialized argument
25+
:param payload: A mapping of parameter names to serialized argument
2626
values. The keys have to be normalized behind names
2727
of parameters. The values have to be serialized
2828
argument values. See also `Nirum's serialization

0 commit comments

Comments
 (0)
0