summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerman Schaaf <hermanschaaf@gmail.com>2014-01-16 13:55:06 +0900
committerMarcel Hellkamp <marc@gsites.de>2014-02-04 18:38:00 +0100
commit0aef49f980fe6d27b574c75cd87e06b0bf29c889 (patch)
treebbf1603b1addc002c21fb30b5f1ae442b7e75a88
parent6d923f88b6fee956113a48868a1b4548204580a0 (diff)
downloadbottle-0aef49f980fe6d27b574c75cd87e06b0bf29c889.tar.gz
"attribues" typo fixes in docstrings
-rw-r--r--bottle.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index 80a9541..cee5d17 100644
--- a/bottle.py
+++ b/bottle.py
@@ -1650,7 +1650,7 @@ def local_property(name=None):
class LocalRequest(BaseRequest):
''' A thread-local subclass of :class:`BaseRequest` with a different
- set of attribues for each thread. There is usually only one global
+ set of attributes for each thread. There is usually only one global
instance of this class (:data:`request`). If accessed during a
request/response cycle, this instance always refers to the *current*
request (even on a multithreaded server). '''
@@ -1660,7 +1660,7 @@ class LocalRequest(BaseRequest):
class LocalResponse(BaseResponse):
''' A thread-local subclass of :class:`BaseResponse` with a different
- set of attribues for each thread. There is usually only one global
+ set of attributes for each thread. There is usually only one global
instance of this class (:data:`response`). Its attributes are used
to build the HTTP response at the end of the request/response cycle.
'''