From fb9c0fe2faa25380fe647ed73ac2ae95fac227e7 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Tue, 3 May 2016 01:30:24 -0700 Subject: [PATCH] tiny socketutils docstring typo --- boltons/socketutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/socketutils.py b/boltons/socketutils.py index 4040e4a..e8a2847 100644 --- a/boltons/socketutils.py +++ b/boltons/socketutils.py @@ -434,7 +434,7 @@ class BufferedSocket(object): return total_sent def sendall(self, data, flags=0, timeout=_UNSET): - """An passthrough to :meth:`~BufferedSocket.send`, retained for + """A passthrough to :meth:`~BufferedSocket.send`, retained for parallelism to the :class:`socket.socket` API. """ return self.send(data, flags, timeout)