From d78573f315368a4815b0e9f2058ff128467fadad Mon Sep 17 00:00:00 2001 From: Robert Smallshire Date: Thu, 15 Dec 2016 14:47:40 +0100 Subject: [PATCH] Fixes a documentation typo. --- serial_asyncio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serial_asyncio/__init__.py b/serial_asyncio/__init__.py index 505ffe2..632d770 100644 --- a/serial_asyncio/__init__.py +++ b/serial_asyncio/__init__.py @@ -151,7 +151,7 @@ def resume_reading(self): def set_write_buffer_limits(self, high=None, low=None): """Set the high- and low-water limits for write flow control. - These two values control when call the protocol’s + These two values control when the protocol’s pause_writing()and resume_writing() methods are called. If specified, the low-water limit must be less than or equal to the high-water limit. Neither high nor low can be negative.