summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Gedminas <marius@gedmin.as>2022-01-20 12:36:01 +0200
committerGitHub <noreply@github.com>2022-01-20 12:36:01 +0200
commit60e103d70d4dcf62dce9c36d79fc1b49089cc7f4 (patch)
tree5407bf353915eed63c06d232634eae108bbb8303
parent71bb933649ba009cd537c2e973519d6e024c02a2 (diff)
downloadbottle-60e103d70d4dcf62dce9c36d79fc1b49089cc7f4.tar.gz
Typo in docstring
-rwxr-xr-xbottle.py2
1 files changed, 1 insertions, 1 deletions
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)