From 60e103d70d4dcf62dce9c36d79fc1b49089cc7f4 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Thu, 20 Jan 2022 12:36:01 +0200 Subject: Typo in docstring --- bottle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bottle.py b/bottle.py index be42bcb..b8a79f1 100755 --- a/bottle.py +++ b/bottle.py @@ -1363,7 +1363,7 @@ class BaseRequest(object): def _get_body_string(self, maxread): """ Read body into a string. Raise HTTPError(413) on requests that are - to large. """ + too large. """ if self.content_length > maxread: raise HTTPError(413, 'Request entity too large') data = self.body.read(maxread + 1) -- cgit v1.2.1