summaryrefslogtreecommitdiff
path: root/docs/api
diff options
context:
space:
mode:
authorthapar <rajthapar@gmail.com>2014-04-18 11:42:01 -0400
committerthapar <rajthapar@gmail.com>2014-04-18 11:42:01 -0400
commit070d7a6abc67e942abffc6645d1efdcfb3b6dafe (patch)
tree2e6a06a5102ba3c2737eeb837dd84fa7bffed704 /docs/api
parent268eb40ff0e21281497a954120220e41bac4a4db (diff)
downloadpyramid-070d7a6abc67e942abffc6645d1efdcfb3b6dafe.tar.gz
pyramid-070d7a6abc67e942abffc6645d1efdcfb3b6dafe.tar.bz2
pyramid-070d7a6abc67e942abffc6645d1efdcfb3b6dafe.zip
Corrected the comment's language
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/request.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api/request.rst b/docs/api/request.rst
index b28ec5ffc..77d80f6d6 100644
--- a/docs/api/request.rst
+++ b/docs/api/request.rst
@@ -320,8 +320,8 @@
def _connect(request):
conn = request.registry.dbsession()
def cleanup(request):
- # since version 1.5, request.exception is no more
- # eagerly cleared
+ # since version 1.5, request.exception is no
+ # longer eagerly cleared
if request.exception is not None:
conn.rollback()
else: