@@ -235,7 +235,7 @@ def create_unix_server(self, protocol_factory, path, *,
235235 sock = None , backlog = 100 , ssl = None ):
236236 """A coroutine which creates a UNIX Domain Socket server.
237237
238- The return valud is a Server object, which can be used to stop
238+ The return value is a Server object, which can be used to stop
239239 the service.
240240
241241 path is a str, representing a file systsem path to bind the
@@ -260,7 +260,7 @@ def create_datagram_endpoint(self, protocol_factory,
260260 # Pipes and subprocesses.
261261
262262 def connect_read_pipe (self , protocol_factory , pipe ):
263- """Register read pipe in eventloop .
263+ """Register read pipe in event loop .
264264
265265 protocol_factory should instantiate object with Protocol interface.
266266 pipe is file-like object already switched to nonblocking.
@@ -273,7 +273,7 @@ def connect_read_pipe(self, protocol_factory, pipe):
273273 raise NotImplementedError
274274
275275 def connect_write_pipe (self , protocol_factory , pipe ):
276- """Register write pipe in eventloop .
276+ """Register write pipe in event loop .
277277
278278 protocol_factory should instantiate object with BaseProtocol interface.
279279 Pipe is file-like object already switched to nonblocking.
0 commit comments