From 1696227c5e04178bf39b3debbf039d5f2773ace3 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 16 Jul 2022 15:49:47 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - src/treq/test/test_multipart.py Fixes: - Should read `output` rather than `outpute`. - Should read `multipart` rather than `mutltipart`. Signed-off-by: Tim Gates --- src/treq/test/test_multipart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/treq/test/test_multipart.py b/src/treq/test/test_multipart.py index d1930373..7736fbd9 100644 --- a/src/treq/test/test_multipart.py +++ b/src/treq/test/test_multipart.py @@ -19,7 +19,7 @@ class MultiPartProducerTestCase(unittest.TestCase): """ Tests for the L{MultiPartProducer} which gets dictionary like object - with post parameters, converts them to mutltipart/form-data format + with post parameters, converts them to multipart/form-data format and feeds them to an L{IConsumer}. """ def _termination(self): @@ -43,7 +43,7 @@ def setUp(self): def getOutput(self, producer, with_producer=False): """ - A convenience function to consume and return outpute. + A convenience function to consume and return output. """ consumer = output = BytesIO()